mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-15 08:52:00 +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;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
if (xsiz > 0 && ysiz > 0)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue