mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
LunaCON: make on-disk gamearray footer contain non-printable chars.
Also, allow writing userdefs[].auto_run. git-svn-id: https://svn.eduke32.com/eduke32@3732 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
258e28bafb
commit
65a10afbc8
2 changed files with 2 additions and 2 deletions
|
@ -825,7 +825,7 @@ local UDRO = function(memb) return { UD(memb) } end
|
|||
-- NOTE: Only members that actually encountered in existing mods are added here.
|
||||
local UserdefLabels = {
|
||||
althud = UD".althud",
|
||||
auto_run = UDRO".auto_run",
|
||||
auto_run = UD".auto_run",
|
||||
camerasprite = UDRO".camerasprite",
|
||||
cashman = UDRO".cashman",
|
||||
clipping = UD".noclip", -- NAME
|
||||
|
|
|
@ -1751,7 +1751,7 @@ local function moddir_filename(cstr_fn)
|
|||
end
|
||||
end
|
||||
|
||||
local GAR_FOOTER = "##EDuke32GameArray##"
|
||||
local GAR_FOOTER = "\001\002EDuke32GameArray\003\004"
|
||||
local GAR_FOOTER_SIZE = #GAR_FOOTER
|
||||
|
||||
local function gamearray_file_common(qnum, writep)
|
||||
|
|
Loading…
Reference in a new issue