gl_model.c: (Mod_LoadModel): change Sys_Error to Host_Error for missing

model to be less annoying when testing a broken mod

git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@1534 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
Eric Wasylishen 2017-11-14 07:20:29 +00:00
parent e03d2b9750
commit d3377b9358

View file

@ -328,7 +328,7 @@ qmodel_t *Mod_LoadModel (qmodel_t *mod, qboolean crash)
if (!buf)
{
if (crash)
Sys_Error ("Mod_LoadModel: %s not found", mod->name); //johnfitz -- was "Mod_NumForName"
Host_Error ("Mod_LoadModel: %s not found", mod->name); //johnfitz -- was "Mod_NumForName"
return NULL;
}