diff options
author | Simon Howard | 2008-09-21 18:20:32 +0000 |
---|---|---|
committer | Simon Howard | 2008-09-21 18:20:32 +0000 |
commit | 5bab2a788da04bd8aaa65891cb3fc7240d56a9b7 (patch) | |
tree | 0ba15b37f5f1f4646fe64dffa11c54c7f90566e1 | |
parent | 0d4e0453946cbdde4995b108c2cc0b8431be2168 (diff) | |
download | chocolate-doom-5bab2a788da04bd8aaa65891cb3fc7240d56a9b7.tar.gz chocolate-doom-5bab2a788da04bd8aaa65891cb3fc7240d56a9b7.tar.bz2 chocolate-doom-5bab2a788da04bd8aaa65891cb3fc7240d56a9b7.zip |
Don't play DEMO4 if gameversion is emulating chex.exe - it only plays
demos 1-3.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1264
-rw-r--r-- | src/d_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/d_main.c b/src/d_main.c index 2ab329bf..849897fe 100644 --- a/src/d_main.c +++ b/src/d_main.c @@ -504,7 +504,7 @@ void D_DoAdvanceDemo (void) paused = false; gameaction = ga_nothing; - if ( gamemode == retail ) + if (gamemode == retail && gameversion != exe_chex) demosequence = (demosequence+1)%7; else demosequence = (demosequence+1)%6; |