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:
helixhorned 2013-05-06 19:43:30 +00:00
parent 258e28bafb
commit 65a10afbc8
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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)