mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
Add dummy parsing of "nofloorpalrange" to defs.c.
git-svn-id: https://svn.eduke32.com/eduke32@2587 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
b3f485a568
commit
c0a8fb0588
1 changed files with 11 additions and 0 deletions
|
@ -84,6 +84,7 @@ enum scripttoken_t
|
|||
T_TILEFROMTEXTURE, T_XOFFSET, T_YOFFSET,
|
||||
T_INCLUDEDEFAULT,
|
||||
T_ANIMSOUNDS,
|
||||
T_NOFLOORPALRANGE,
|
||||
T_ECHO,
|
||||
};
|
||||
|
||||
|
@ -160,6 +161,7 @@ static int32_t defsparser(scriptfile *script)
|
|||
{ "music", T_MUSIC },
|
||||
{ "sound", T_SOUND },
|
||||
{ "animsounds", T_ANIMSOUNDS }, // dummy
|
||||
{ "nofloorpalrange", T_NOFLOORPALRANGE }, // dummy
|
||||
// other stuff
|
||||
{ "undefmodel", T_UNDEFMODEL },
|
||||
{ "undefmodelrange", T_UNDEFMODELRANGE },
|
||||
|
@ -1973,6 +1975,15 @@ static int32_t defsparser(scriptfile *script)
|
|||
}
|
||||
break;
|
||||
|
||||
case T_NOFLOORPALRANGE:
|
||||
{
|
||||
int32_t b,e,i;
|
||||
|
||||
if (scriptfile_getnumber(script,&b)) break;
|
||||
if (scriptfile_getnumber(script,&e)) break;
|
||||
}
|
||||
break;
|
||||
|
||||
case T_SOUND:
|
||||
case T_MUSIC:
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue