kill some unnecessary Sys_Errors

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1733 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
TimeServ 2005-12-21 08:34:34 +00:00
parent e19c431a28
commit a32c1af46d
4 changed files with 23 additions and 5 deletions

View file

@ -1435,7 +1435,10 @@ qboolean Mod_LoadDoomLevel(model_t *mod)
COM_StripExtension(mod->name, name);
if (!COM_LoadTempFile(va("%s", mod->name)))
Sys_Error("Wad map %s does not exist\n", mod->name);
{
Con_Printf("Wad map %s does not exist\n", mod->name);
return false;
}
gl_nodes = (void *)COM_LoadMallocFile (va("%s.gl_nodes", name));
if (gl_nodes && com_filesize>0)