From c7e7c5084a55503896d0ced9a5bf2ab079302adf Mon Sep 17 00:00:00 2001 From: Jason Woofenden Date: Mon, 26 Jun 2006 19:34:14 +0000 Subject: [PATCH] started ship in the middle vertically (instead of the top of the ship in the middle) --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index ba1c8b7..0001c99 100644 --- a/main.c +++ b/main.c @@ -763,7 +763,7 @@ gameloop() { reset_rocks(); screendx = SCREENDXMIN; screendy = 0; - ship.x = XSIZE/2.2; ship.y = YSIZE/2; + ship.x = XSIZE/2.2; ship.y = YSIZE/2 - ship.w/2; ship.dx = screendx; ship.dy = screendy; ship.lives = 4; ship.flags = MOVE|DRAW|COLLIDE; -- 1.7.10.4