diff --git a/src/game.c b/src/game.c index c1c8bdb..ee75249 100644 --- a/src/game.c +++ b/src/game.c @@ -1,4 +1,4 @@ -/* $Id: game.c,v 1.44 2003/07/25 23:46:25 stpohle Exp $ +/* $Id: game.c,v 1.45 2003/07/26 02:43:21 stpohle Exp $ game.c - procedures for the game. */ #include @@ -306,7 +306,7 @@ void game_showresult () { font_draw (x, y, text, 2); y += font[2].size.x; - for (i = 1, p = 0; p < MAX_PLAYERS; p++) + for (i = 0, p = 0; p < MAX_PLAYERS; p++) if (PS_IS_alife (bman.players[p].state)) i++; @@ -399,4 +399,4 @@ void game_showresult () { s_delay (25); } -}; \ No newline at end of file +};