From f625b92704ca2a9aaa4ef0955c2c5a20e57e3b3a Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sat, 13 Sep 2008 21:02:29 +0000 Subject: [PATCH] - CQ3 detection was broken. SVN r1220 (trunk) --- src/d_main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/d_main.cpp b/src/d_main.cpp index 791ee9cad4..0f0ae1bd8e 100644 --- a/src/d_main.cpp +++ b/src/d_main.cpp @@ -1559,7 +1559,8 @@ static EIWADType ScanIWAD (const char *iwad) if (!lumpsfound[Check_Mapinfo]) { // The original release won't work without its hacked custom EXE. - I_FatalError("Found an incompatible version of Chex Quest 3"); + //I_FatalError("Found an incompatible version of Chex Quest 3"); + return NUM_IWAD_TYPES; // Can't use it. } return IWAD_ChexQuest3; }