scoring bug in invaders

This commit is contained in:
iggy 2011-08-03 21:18:11 +02:00
parent 858429cd15
commit dd4666b3d7
1 changed files with 1 additions and 1 deletions

View File

@ -77,6 +77,7 @@ void ram(void) {
screen_intro();
game.rokets = 3;
game.level = 1;
game.score = 0;
init_game();
screen_level();
while (game.rokets>=0) {
@ -162,7 +163,6 @@ void init_game(void) {
game.killed = 0;
game.step = false;
game.ufo = DISABLED;
game.score = 0;
init_enemy();
for (int col=0; col<ENEMY_COLUMNS; col++){