mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
DEF "voxel": fix a tile range check failure message.
git-svn-id: https://svn.eduke32.com/eduke32@3329 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
9c328bf0a5
commit
d970283582
1 changed files with 1 additions and 1 deletions
|
@ -1367,7 +1367,7 @@ static int32_t defsparser(scriptfile *script)
|
|||
case T_TILE1:
|
||||
scriptfile_getsymbol(script,&tile1);
|
||||
|
||||
if (check_tile_range("hud", &tile0, &tile1, script, voxeltokptr))
|
||||
if (check_tile_range("voxel", &tile0, &tile1, script, voxeltokptr))
|
||||
break;
|
||||
|
||||
for (tilex=tile0; tilex<=tile1; tilex++)
|
||||
|
|
Loading…
Reference in a new issue