mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-11 18:50:46 +00:00
Fix CLANG warnings
git-svn-id: https://svn.eduke32.com/eduke32@5491 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
f64a397b34
commit
81d286dcc4
1 changed files with 2 additions and 2 deletions
|
@ -858,7 +858,7 @@ static int32_t defsparser(scriptfile *script)
|
|||
if (texstatus == -3)
|
||||
initprintf("Error: No palette loaded, in tilefromtexture definition near line %s:%d\n",
|
||||
script->filename, scriptfile_getlinum(script,texturetokptr));
|
||||
if (texstatus == (-3)<<8)
|
||||
if (texstatus == -(3<<8))
|
||||
initprintf("Error: \"%s\" has more than one tile, in tilefromtexture definition near line %s:%d\n",
|
||||
fn, script->filename, scriptfile_getlinum(script,texturetokptr));
|
||||
if (texstatus < 0)
|
||||
|
@ -1003,7 +1003,7 @@ static int32_t defsparser(scriptfile *script)
|
|||
if (texstatus == -3)
|
||||
initprintf("Error: No palette loaded, in importtile definition near line %s:%d\n",
|
||||
script->filename, scriptfile_getlinum(script,cmdtokptr));
|
||||
if (texstatus == (-3)<<8)
|
||||
if (texstatus == -(3<<8))
|
||||
initprintf("Error: \"%s\" has more than one tile, in importtile definition near line %s:%d\n",
|
||||
fn, script->filename, scriptfile_getlinum(script,cmdtokptr));
|
||||
if (texstatus < 0)
|
||||
|
|
Loading…
Reference in a new issue