diff options
author | Simon Howard | 2008-07-26 15:29:08 +0000 |
---|---|---|
committer | Simon Howard | 2008-07-26 15:29:08 +0000 |
commit | fa03d0eb682e3838c4cebf62e3c24e3e6a7982b8 (patch) | |
tree | 6b27088187ea06dc3b16736e4afc11a8ea71be55 | |
parent | e59a61635342af014a915bfa69d24bca228ff784 (diff) | |
download | chocolate-doom-fa03d0eb682e3838c4cebf62e3c24e3e6a7982b8.tar.gz chocolate-doom-fa03d0eb682e3838c4cebf62e3c24e3e6a7982b8.tar.bz2 chocolate-doom-fa03d0eb682e3838c4cebf62e3c24e3e6a7982b8.zip |
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
-rw-r--r-- | src/doomdef.h | 2 | ||||
-rw-r--r-- | src/m_menu.c | 3 |
2 files changed, 4 insertions, 1 deletions
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; |