mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
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:
parent
40f177cafd
commit
9814e6a091
1 changed files with 3 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue