From f03207718131dc05002c3347b78b12eee16599e5 Mon Sep 17 00:00:00 2001 From: stpohle Date: Wed, 1 Dec 2004 21:47:59 +0000 Subject: [PATCH] deleted debug stuff and little change in the resulscreen --- src/game.c | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/game.c b/src/game.c index 39381fd..d3aaf29 100644 --- a/src/game.c +++ b/src/game.c @@ -1,4 +1,4 @@ -/* $Id: game.c,v 1.103 2004/12/01 02:41:54 stpohle Exp $ +/* $Id: game.c,v 1.104 2004/12/01 21:47:59 stpohle Exp $ game.c - procedures for the game. */ #include @@ -300,7 +300,7 @@ game_loop () if (game_check_endgame () && bman.timeout >= 0.0f) bman.timeout = 0.0f; - if ((GT_SP || GT_MP_PTPM) && bman.timeout < -GAME_OVERTIMEOUT && (!debug)) { + if ((GT_SP || GT_MP_PTPM) && bman.timeout < -GAME_OVERTIMEOUT) { d_printf ("GAME: Game Over\n"); done = 1; } @@ -311,8 +311,6 @@ game_loop () if (menu != NULL) game_menu_loop (&event, eventstate); - s_delay (60); // for debug only - gfx_blitdraw (); s_calctimesync (); bman.timeout -= timediff; @@ -717,8 +715,8 @@ void game_showresultnormal (int pos_x, int pos_y, int pos_w, int pos_h) { for (i = 1, p = 0; p < pl_cnt; p++) { if (PS_IS_used (pl[p]->state)) { if (PS_IS_alife (pl[p]->state)) { - font_gfxdrawbold (pos_x + x + GFX_MENUPLAYERIMGSIZE_X, pos_y + y - 10, pl[p]->name, 0, COLOR_brown, 1, 1); - font_gfxdraw (pos_x + x + GFX_MENUPLAYERIMGSIZE_X,pos_y + y - 10, pl[p]->name, 0, COLOR_yellow, 1); + font_gfxdrawbold (pos_x + x + GFX_MENUPLAYERIMGSIZE_X + 8, pos_y + y - 10, pl[p]->name, 0, COLOR_brown, 1, 1); + font_gfxdraw (pos_x + x + GFX_MENUPLAYERIMGSIZE_X + 8,pos_y + y - 10, pl[p]->name, 0, COLOR_yellow, 1); } else font_gfxdraw (pos_x + x + GFX_MENUPLAYERIMGSIZE_X,pos_y + y - 10, pl[p]->name, 0, COLOR_gray, 1);