shithub: choc

Download patch

ref: fa03d0eb682e3838c4cebf62e3c24e3e6a7982b8
parent: e59a61635342af014a915bfa69d24bca228ff784
author: Simon Howard <fraggle@gmail.com>
date: Sat Jul 26 11:29:08 EDT 2008

Chex Quest's chex.exe is based on the Final Doom exe, not the Ultimate
Doom exe.

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

--- a/src/doomdef.h
+++ b/src/doomdef.h
@@ -105,8 +105,8 @@
 {
     exe_doom_1_9,   // Doom 1.9: used for shareware, registered and commercial
     exe_ultimate,   // Ultimate Doom (retail)
-    exe_chex,       // Chex Quest executable (based on Ultimate Doom)
     exe_final,      // Final Doom
+    exe_chex,       // Chex Quest executable (based on Final Doom)
 } GameVersion_t;
 
 
--- a/src/m_menu.c
+++ b/src/m_menu.c
@@ -781,6 +781,9 @@
 
             // Ultimate Doom always displays "HELP1".
 
+            // Chex Quest version also uses "HELP1", even though it is based
+            // on Final Doom.
+
             lumpname = "HELP1";
 
             break;