mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-11 10:40:47 +00:00
LunaCON: add forgotted "screensound" to keyword list in con_lang.lua.
Also, fix 'spriteflags' directive. git-svn-id: https://svn.eduke32.com/eduke32@3945 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
b70779ba6f
commit
e13cae69ce
3 changed files with 3 additions and 1 deletions
|
@ -948,6 +948,7 @@ enum ScriptKeywords_t
|
|||
CON_SCREENSOUND, // 372
|
||||
CON_END
|
||||
};
|
||||
// KEEPINSYNC with the keyword list in lunatic/con_lang.lua
|
||||
#endif
|
||||
|
||||
|
||||
|
|
|
@ -945,6 +945,7 @@ lpeg.P(false) +
|
|||
"sectclearinterpolation" +
|
||||
"scriptsize" +
|
||||
"screentext" +
|
||||
"screensound" +
|
||||
"savenn" +
|
||||
"savemapstate" +
|
||||
"savegamevar" +
|
||||
|
|
|
@ -1124,7 +1124,7 @@ function Cmd.xspriteflags(tilenum, flags)
|
|||
ffiC.g_tile[tilenum]._flags = flags
|
||||
else
|
||||
assert(type(flags)=="string")
|
||||
ffiC.g_tile[tilenum]._flags = bit.bor(ffiC.g_tile[tilenum].flags, ffiC[flags])
|
||||
ffiC.g_tile[tilenum]._flags = bit.bor(ffiC.g_tile[tilenum]._flags, ffiC[flags])
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue