diff options
author | Fabian Greffrath | 2014-02-24 09:34:04 +0100 |
---|---|---|
committer | Fabian Greffrath | 2014-02-24 09:34:04 +0100 |
commit | b8fd310fc155b969346265601a48c21faec2ecf9 (patch) | |
tree | a5c081bbebc9bc664f732d557024e857e6f153f2 /src | |
parent | 79f8427436cf2da7de710e9046f2e01dc6c8b17e (diff) | |
download | chocolate-doom-b8fd310fc155b969346265601a48c21faec2ecf9.tar.gz chocolate-doom-b8fd310fc155b969346265601a48c21faec2ecf9.tar.bz2 chocolate-doom-b8fd310fc155b969346265601a48c21faec2ecf9.zip |
Keep (bfgedition) as part of the check for TITLEPIC.
Diffstat (limited to 'src')
-rw-r--r-- | src/doom/d_main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/doom/d_main.c b/src/doom/d_main.c index 75c9328c..3badb4ad 100644 --- a/src/doom/d_main.c +++ b/src/doom/d_main.c @@ -576,7 +576,8 @@ void D_DoAdvanceDemo (void) // The Doom 3: BFG Edition version of doom2.wad does not have a // TITLETPIC lump. Use INTERPIC instead as a workaround. - if (!strcasecmp(pagename, "TITLEPIC") && W_CheckNumForName("titlepic") < 0) + if (bfgedition && !strcasecmp(pagename, "TITLEPIC") + && W_CheckNumForName("titlepic") < 0) { pagename = DEH_String("INTERPIC"); } |