summaryrefslogtreecommitdiff
path: root/src/strife/g_game.c
diff options
context:
space:
mode:
authorJames Haley2012-02-10 02:11:56 +0000
committerJames Haley2012-02-10 02:11:56 +0000
commit2ec25b9ab94916c3dc953b0c7b24a0f6c1a5ea4e (patch)
treec965f2726b8088a39e1997e57e7968a98111acf4 /src/strife/g_game.c
parent8bc817adfb66bdec0ff4d9cddf0f240ef129c13a (diff)
downloadchocolate-doom-2ec25b9ab94916c3dc953b0c7b24a0f6c1a5ea4e.tar.gz
chocolate-doom-2ec25b9ab94916c3dc953b0c7b24a0f6c1a5ea4e.tar.bz2
chocolate-doom-2ec25b9ab94916c3dc953b0c7b24a0f6c1a5ea4e.zip
Remove all temporary code that was put in place until MAXPLAYERS became
8 rather than 4 (unfortunately this was NOT accounted for in the save code). Subversion-branch: /branches/v2-branch Subversion-revision: 2498
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
//