[util] Make wad lump failure a soft error

Can't recover from an error if the program is swept out from underneath
you.
This commit is contained in:
Bill Currie 2021-03-21 11:36:18 +09:00
parent 9e633e7230
commit 6e0cc59e8f

View file

@ -118,7 +118,7 @@ W_GetLumpinfo (const char *name)
return lump_p;
}
Sys_Error ("W_GetLumpinfo: %s not found", name);
Sys_MaskPrintf (SYS_WARN, "W_GetLumpinfo: %s not found", name);
return NULL;
}