- demote pwad defcvars error to a warning

This commit is contained in:
Rachael Alexanderson 2020-08-01 06:01:29 -04:00
parent 7179eaacda
commit bda49d0bf7

View file

@ -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);