commit fa03d0eb682e3838c4cebf62e3c24e3e6a7982b8
Author: Simon Howard <fraggle@gmail.com>
AuthorDate: Sat Jul 26 15:29:08 2008 +0000
Commit: Simon Howard <fraggle@gmail.com>
CommitDate: Sat Jul 26 15:29:08 2008 +0000
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
---
src/doomdef.h | 2 +-
src/m_menu.c | 3 +++
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/src/doomdef.h b/src/doomdef.h
index 87021ae2..52964242 100644
--- a/src/doomdef.h
+++ b/src/doomdef.h
@@ -105,8 +105,8 @@ typedef enum
{
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;
diff --git a/src/m_menu.c b/src/m_menu.c
index 85d09a48..aab2afce 100644
--- a/src/m_menu.c
+++ b/src/m_menu.c
@@ -781,6 +781,9 @@ void M_DrawReadThis1(void)
// Ultimate Doom always displays "HELP1".
+ // Chex Quest version also uses "HELP1", even though it is based
+ // on Final Doom.
+
lumpname = "HELP1";
break;