Skip to content

Commit

Permalink
- demote pwad defcvars error to a warning
Browse files Browse the repository at this point in the history
  • Loading branch information
madame-rachelle committed Aug 1, 2020
1 parent 7179eaa commit bda49d0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/d_main.cpp
Expand Up @@ -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);

Expand Down

0 comments on commit bda49d0

Please sign in to comment.