mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-02-02 22:11:22 +00:00
gl_model.c (Mod_SetExtraFlags): remove bogus !mod->name check.
git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@1535 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
parent
d3377b9358
commit
a23a75efa3
1 changed files with 1 additions and 1 deletions
|
@ -2483,7 +2483,7 @@ void Mod_SetExtraFlags (qmodel_t *mod)
|
|||
{
|
||||
extern cvar_t r_nolerp_list, r_noshadow_list;
|
||||
|
||||
if (!mod || !mod->name || mod->type != mod_alias)
|
||||
if (!mod || mod->type != mod_alias)
|
||||
return;
|
||||
|
||||
mod->flags &= (0xFF | MF_HOLEY); //only preserve first byte, plus MF_HOLEY
|
||||
|
|
Loading…
Reference in a new issue