From c0a8fb05881de220d1261d532860c8f23ea47a81 Mon Sep 17 00:00:00 2001 From: helixhorned Date: Wed, 4 Apr 2012 18:57:58 +0000 Subject: [PATCH] Add dummy parsing of "nofloorpalrange" to defs.c. git-svn-id: https://svn.eduke32.com/eduke32@2587 1a8010ca-5511-0410-912e-c29ae57300e0 --- polymer/eduke32/build/src/defs.c | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/polymer/eduke32/build/src/defs.c b/polymer/eduke32/build/src/defs.c index 0bb1301ad..2c4ec6edd 100644 --- a/polymer/eduke32/build/src/defs.c +++ b/polymer/eduke32/build/src/defs.c @@ -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: {