diff --git a/src/d_main.cpp b/src/d_main.cpp index a3fe910b8..e39d0bf76 100644 --- a/src/d_main.cpp +++ b/src/d_main.cpp @@ -337,7 +337,11 @@ void D_GrabCVarDefaults() { // don't parse from wads if (lastlump > fileSystem.GetLastEntry(fileSystem.GetMaxIwadNum())) - I_FatalError("Cannot load DEFCVARS from a wadfile!\n"); + { + // would rather put this in a modal of some sort, but this will have to do. + Printf(TEXTCOLOR_RED "Cannot load DEFCVARS from a wadfile!\n"); + break; + } FScanner sc(lump);