diff --git a/src/d_defcvars.cpp b/src/d_defcvars.cpp index 3a1985070..20c78b488 100644 --- a/src/d_defcvars.cpp +++ b/src/d_defcvars.cpp @@ -45,6 +45,8 @@ void D_GrabCVarDefaults() while ((lump = fileSystem.FindLump("DEFCVARS", &lastlump)) != -1) { +#if 0 +// what a silly restriction from gzdoom, thankfully we don't have to adhere to it in vkdoom! // don't parse from wads if (lastlump > fileSystem.GetLastEntry(fileSystem.GetMaxIwadNum())) { @@ -52,6 +54,7 @@ void D_GrabCVarDefaults() Printf(TEXTCOLOR_RED "Cannot load DEFCVARS from a wadfile!\n"); break; } +#endif FScanner sc(lump);