working on the single player code

origin
stpohle 23 years ago
parent 1bd676c4fa
commit 222718779d

@ -212,7 +212,7 @@ game_loop ()
/* check if there is only one player left and the game is in multiplayer mode
and if there the last dieing animation is done */
if ((GT_MP_PTP && bman.players_nr < 2) || (bman.players_nr == 0))
if (bman.players_nr < 2)
gameovertimeout--;
if (gameovertimeout <= 0) {

@ -1,4 +1,4 @@
/* $Id: single.c,v 1.12 2003/05/11 23:32:42 stpohle Exp $ */
/* $Id: single.c,v 1.13 2003/05/12 02:31:09 stpohle Exp $ */
/* single player */
#include "basic.h"
@ -138,7 +138,7 @@ void single_playergame () {
for (p = 0; p < MAX_PLAYERS; p++)
bman.players[p].state = 0;
// single_create_ai (4);
single_create_ai (4);
single_game_new ();
gfx_game_init ();
game_loop ();

Loading…
Cancel
Save