From: Jason Woofenden Date: Mon, 26 Jun 2006 19:34:14 +0000 (+0000) Subject: started ship in the middle vertically (instead of the top of the ship in the middle) X-Git-Tag: 0.5~15 X-Git-Url: https://jasonwoof.com/gitweb/?p=vor.git;a=commitdiff_plain;h=c7e7c5084a55503896d0ced9a5bf2ab079302adf started ship in the middle vertically (instead of the top of the ship in the middle) --- 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;