From 92b79d1ddda19c2f1a501cde10ff257f077f2c3b Mon Sep 17 00:00:00 2001 From: stpohle Date: Sat, 26 Jul 2003 02:43:21 +0000 Subject: [PATCH] draw and game over will be put now too as information at the result screen --- src/game.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 +};