|
|
|
@ -1,4 +1,4 @@
|
|
|
|
|
/* $Id: game.c,v 1.99 2004/10/18 20:20:22 stpohle Exp $
|
|
|
|
|
/* $Id: game.c,v 1.100 2004/10/28 18:15:18 stpohle Exp $
|
|
|
|
|
game.c - procedures for the game. */
|
|
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
@ -71,7 +71,10 @@ game_draw_info ()
|
|
|
|
|
col = 3;
|
|
|
|
|
}
|
|
|
|
|
else { // player is alife
|
|
|
|
|
col = 0;
|
|
|
|
|
if (bman.gametype == GT_team)
|
|
|
|
|
col = teams[players[i].team_nr].col;
|
|
|
|
|
else
|
|
|
|
|
col = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
font_draw (x, j, scrtext, 0, col);
|
|
|
|
|