summaryrefslogtreecommitdiff
path: root/apps/plugins/doom/g_game.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/doom/g_game.c')
-rw-r--r--apps/plugins/doom/g_game.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/plugins/doom/g_game.c b/apps/plugins/doom/g_game.c
index 426ab1ca13..1029dad7bb 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)
667 // 667 //
668 // killough 11/98: don't autorepeat spy mode switch 668 // killough 11/98: don't autorepeat spy mode switch
669 669
670#if 0
670 if (ev->data1 == key_spy && netgame && (demoplayback || !deathmatch) && 671 if (ev->data1 == key_spy && netgame && (demoplayback || !deathmatch) &&
671 gamestate == GS_LEVEL) 672 gamestate == GS_LEVEL)
672 { 673 {
@@ -686,6 +687,7 @@ boolean G_Responder (event_t* ev)
686 } 687 }
687 return true; 688 return true;
688 } 689 }
690#endif
689 691
690 // any other key pops up menu if in demos 692 // any other key pops up menu if in demos
691 // 693 //
@@ -1183,6 +1185,8 @@ void G_DoReborn (int playernum)
1183{ 1185{
1184 if (!netgame) 1186 if (!netgame)
1185 gameaction = ga_loadlevel; // reload the level from scratch 1187 gameaction = ga_loadlevel; // reload the level from scratch
1188 (void)playernum;
1189#if 0
1186 else 1190 else
1187 { // respawn at the start 1191 { // respawn at the start
1188 int i; 1192 int i;
@@ -1217,6 +1221,7 @@ void G_DoReborn (int playernum)
1217 } 1221 }
1218 P_SpawnPlayer (&playerstarts[playernum]); 1222 P_SpawnPlayer (&playerstarts[playernum]);
1219 } 1223 }
1224#endif
1220} 1225}
1221 1226
1222// DOOM Par Times 1227// DOOM Par Times