X-Git-Url: https://jasonwoof.com/gitweb/?p=vor.git;a=blobdiff_plain;f=main.c;h=309da058bbce6ccbe19f66b20639651239f34755;hp=0486c7e2cb3a98712fc8065c63bf3df58a33eeec;hb=3814fd00ef6b0a4f5a9d83b5b42d494bc64da668;hpb=46dacbe75dac20a1c6e1b61a2eb99ca25fc971ec diff --git a/main.c b/main.c index 0486c7e..309da05 100644 --- a/main.c +++ b/main.c @@ -111,11 +111,6 @@ char *data_dir; extern char *optarg; extern int optind, opterr, optopt; -float dist_sq(float x1, float y1, float x2, float y2) -{ - return (x2-x1)*(x2-x1) + (y2-y1)*(y2-y1); -} - // ************************************* FUNCS float @@ -775,6 +770,8 @@ gameloop() { // Play the explosion sound play_sound(0); makebangdots(shipx,shipy,shipdx,shipdy,surf_ship,30); + shipdx = 0; + shipdy = 0; if(--nships <= 0) { gameover = 1; state = GAME_OVER; @@ -785,8 +782,6 @@ gameloop() { else { state = DEAD_PAUSE; state_timeout = DEAD_PAUSE_LENGTH; - shipdx = 0; - shipdy = 0; } }