LunaCON: suffix gamearray file names with '.gar'.

git-svn-id: https://svn.eduke32.com/eduke32@5233 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
helixhorned 2015-05-25 12:57:48 +00:00
parent 40f177cafd
commit 9814e6a091
1 changed files with 3 additions and 1 deletions

View File

@ -2093,7 +2093,9 @@ local GAR_FOOTER = "\001\002EDuke32GameArray\003\004"
local GAR_FOOTER_SIZE = #GAR_FOOTER
local function gamearray_file_common(qnum, writep)
local fn = moddir_filename(bcheck.quote_idx(qnum))
-- NOTE: suffix with '.gar' so that we can have C-CON and LunaCON gamearray
-- files side-by-side.
local fn = moddir_filename(bcheck.quote_idx(qnum))..".gar"
local f, errmsg
if (writep) then