mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-22 20:41:20 +00:00
[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:
parent
9e633e7230
commit
6e0cc59e8f
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue