aboutsummaryrefslogtreecommitdiff
path: root/src/game.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/game.c')
-rw-r--r--src/game.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/game.c b/src/game.c
index ff757f4..16dcfd4 100644
--- a/src/game.c
+++ b/src/game.c
@@ -238,8 +238,8 @@ Game *game_new(int width, int height, GameOptions gameopts) {
g->reverse = 0;
g->tlast = 0;
g->cur_room_x = 0;
- g->cur_room_y = 0;
- g->cur_room_z = 0;
+ g->cur_room_y = 2;
+ g->cur_room_z = 4;
g->num_rooms = 0;
g->view_angle = deg2rad(+20.0);
g->view_dist = 5.0;
@@ -283,7 +283,7 @@ Game *game_new(int width, int height, GameOptions gameopts) {
g->lander->y = 0.0;
g->lander->z = -4.93;
g->lander->landed = 1;
- g->lander->yaw = deg2rad(30.0);
+ g->lander->yaw = deg2rad(210.0);
g->lander->attribs = OBJ_GRAVITY;
return g;