mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-25 03:00:46 +00:00
- fixed setup of hires textures.
File check was accidentally inverted.
This commit is contained in:
parent
08ec38ce75
commit
e119dc841b
1 changed files with 4 additions and 1 deletions
|
@ -2142,8 +2142,11 @@ static int32_t defsparser(scriptfile *script)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (EDUKE32_PREDICT_FALSE(fileSystem.FileExists(fn)))
|
if (EDUKE32_PREDICT_FALSE(!fileSystem.FileExists(fn)))
|
||||||
|
{
|
||||||
|
initprintf("Error: %s not found in replacement for tile %d\n", fn, tile);
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
if (xsiz > 0 && ysiz > 0)
|
if (xsiz > 0 && ysiz > 0)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue