summaryrefslogtreecommitdiff
path: root/src/heretic/mn_menu.c
diff options
context:
space:
mode:
authorSimon Howard2008-09-25 20:00:31 +0000
committerSimon Howard2008-09-25 20:00:31 +0000
commitb05a3f9448a690bf1d6805ed20081227921f64d9 (patch)
tree962ed1be7fd32614e8d765aa3396cf2dea93c3a8 /src/heretic/mn_menu.c
parent9ba60f243d1ae1ab14ba28eac92fca7b5891801a (diff)
downloadchocolate-doom-b05a3f9448a690bf1d6805ed20081227921f64d9.tar.gz
chocolate-doom-b05a3f9448a690bf1d6805ed20081227921f64d9.tar.bz2
chocolate-doom-b05a3f9448a690bf1d6805ed20081227921f64d9.zip
Remove ExtendedWAD variable; use gamemode == retail.
Subversion-branch: /branches/raven-branch Subversion-revision: 1286
Diffstat (limited to 'src/heretic/mn_menu.c')
-rw-r--r--src/heretic/mn_menu.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/heretic/mn_menu.c b/src/heretic/mn_menu.c
index 716282d6..f295c076 100644
--- a/src/heretic/mn_menu.c
+++ b/src/heretic/mn_menu.c
@@ -303,7 +303,8 @@ void MN_Init(void)
MenuActive = false;
messageson = true;
SkullBaseLump = W_GetNumForName("M_SKL00");
- if (ExtendedWAD)
+
+ if (gamemode == retail)
{ // Add episodes 4 and 5 to the menu
EpisodeMenu.itemCount = 5;
EpisodeMenu.y -= ITEM_HEIGHT;