diff options
| -rw-r--r-- | apps/plugins/doom/g_game.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/plugins/doom/g_game.c b/apps/plugins/doom/g_game.c index 426ab1c..1029dad 100644 --- a/apps/plugins/doom/g_game.c +++ b/apps/plugins/doom/g_game.c @@ -667,6 +667,7 @@ boolean G_Responder (event_t* ev) // // killough 11/98: don't autorepeat spy mode switch +#if 0 if (ev->data1 == key_spy && netgame && (demoplayback || !deathmatch) && gamestate == GS_LEVEL) { @@ -686,6 +687,7 @@ boolean G_Responder (event_t* ev) } return true; } +#endif // any other key pops up menu if in demos // @@ -1183,6 +1185,8 @@ void G_DoReborn (int playernum) { if (!netgame) gameaction = ga_loadlevel; // reload the level from scratch + (void)playernum; +#if 0 else { // respawn at the start int i; @@ -1217,6 +1221,7 @@ void G_DoReborn (int playernum) } P_SpawnPlayer (&playerstarts[playernum]); } +#endif } // DOOM Par Times |