mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 14:51:51 +00:00
- demote pwad defcvars error to a warning
This commit is contained in:
parent
7179eaacda
commit
bda49d0bf7
1 changed files with 5 additions and 1 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue