summaryrefslogtreecommitdiff
path: root/src/strife/g_game.c
diff options
context:
space:
mode:
authorSimon Howard2013-08-10 21:45:48 +0000
committerSimon Howard2013-08-10 21:45:48 +0000
commitb536405fe9e5faac12472b2629707ceb87bfe088 (patch)
tree573d436e6fa0df4a9320fc87d9f860d4b205137f /src/strife/g_game.c
parent17c10da2f3bbcdbfd8d1b45204a5748434456833 (diff)
downloadchocolate-doom-b536405fe9e5faac12472b2629707ceb87bfe088.tar.gz
chocolate-doom-b536405fe9e5faac12472b2629707ceb87bfe088.tar.bz2
chocolate-doom-b536405fe9e5faac12472b2629707ceb87bfe088.zip
Tweak Strife documentation comments.
Subversion-branch: /branches/v2-branch Subversion-revision: 2612
Diffstat (limited to 'src/strife/g_game.c')
-rw-r--r--src/strife/g_game.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/strife/g_game.c b/src/strife/g_game.c
index e295b858..87fb74ac 100644
--- a/src/strife/g_game.c
+++ b/src/strife/g_game.c
@@ -2347,8 +2347,7 @@ void G_DoPlayDemo (void)
// Play back a demo recorded in a netgame with a single player.
//
- if (playeringame[1] || M_CheckParm("-solo-net") > 0
- || M_CheckParm("-netdemo") > 0)
+ if (playeringame[1] || M_ParmExists("-solo-net"))
{
netgame = true;
netdemo = true;
@@ -2379,7 +2378,7 @@ void G_TimeDemo (char* name)
// Disable rendering the screen entirely.
//
- nodrawers = M_CheckParm ("-nodraw");
+ nodrawers = M_ParmExists("-nodraw");
timingdemo = true;
singletics = true;