mirror of
https://github.com/ZDoom/qzdoom.git
synced 2025-02-21 19:31:14 +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
|
// don't parse from wads
|
||||||
if (lastlump > fileSystem.GetLastEntry(fileSystem.GetMaxIwadNum()))
|
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);
|
FScanner sc(lump);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue