shithub: choc

Download patch

ref: 5bab2a788da04bd8aaa65891cb3fc7240d56a9b7
parent: 0d4e0453946cbdde4995b108c2cc0b8431be2168
author: Simon Howard <fraggle@gmail.com>
date: Sun Sep 21 14:20:32 EDT 2008

Don't play DEMO4 if gameversion is emulating chex.exe - it only plays
demos 1-3.

Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1264

--- a/src/d_main.c
+++ b/src/d_main.c
@@ -504,7 +504,7 @@
     paused = false;
     gameaction = ga_nothing;
 
-    if ( gamemode == retail )
+    if (gamemode == retail && gameversion != exe_chex)
       demosequence = (demosequence+1)%7;
     else
       demosequence = (demosequence+1)%6;