summaryrefslogtreecommitdiff
path: root/src/strife/g_game.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/strife/g_game.c')
-rw-r--r--src/strife/g_game.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/strife/g_game.c b/src/strife/g_game.c
index f76ce747..84e3c274 100644
--- a/src/strife/g_game.c
+++ b/src/strife/g_game.c
@@ -2244,11 +2244,6 @@ void G_BeginRecording (void)
for (i=0 ; i<MAXPLAYERS ; i++)
*demo_p++ = playeringame[i];
-
- // STRIFE-TODO: TEMPORARY: fill out the rest of playeringame until
- // MAXPLAYERS == 8
- for (; i < 8; i++)
- *demo_p++ = 0;
}
@@ -2346,11 +2341,6 @@ void G_DoPlayDemo (void)
for (i=0 ; i<MAXPLAYERS ; i++)
playeringame[i] = *demo_p++;
- // STRIFE-TODO: read out the rest of playeringame until
- // MAXPLAYERS is bumped to 8
- for(; i < 8; i++)
- ++demo_p;
-
//!
// @category demo
//