mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-02-23 11:51:23 +00:00
Lunatic: Fix build, part 5. EpisodeNames --> g_volumeNames
git-svn-id: https://svn.eduke32.com/eduke32@5988 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
dcc542c6fc
commit
22f73a9ab5
3 changed files with 3 additions and 3 deletions
|
@ -930,7 +930,7 @@ function _qgetsysstr(qdst, what, pli)
|
||||||
elseif (what == ffiC.STR_VOLUMENAME) then
|
elseif (what == ffiC.STR_VOLUMENAME) then
|
||||||
local vol = ffiC.ud.volume_number
|
local vol = ffiC.ud.volume_number
|
||||||
bcheck.volume_idx(vol)
|
bcheck.volume_idx(vol)
|
||||||
ffi.copy(dst, ffiC.EpisodeNames[vol], ffi.sizeof(ffiC.EpisodeNames[0]))
|
ffi.copy(dst, ffiC.g_volumeNames[vol], ffi.sizeof(ffiC.g_volumeNames[0]))
|
||||||
elseif (what == ffiC.STR_YOURTIME) then
|
elseif (what == ffiC.STR_YOURTIME) then
|
||||||
ffi.copy(dst, ffi.string(ffiC.G_PrintYourTime()))
|
ffi.copy(dst, ffi.string(ffiC.G_PrintYourTime()))
|
||||||
elseif (what == ffiC.STR_PARTIME) then
|
elseif (what == ffiC.STR_PARTIME) then
|
||||||
|
|
|
@ -615,7 +615,7 @@ int32_t g_logoFlags;
|
||||||
|
|
||||||
-- INTERNAL VARIABLES/FUNCTIONS
|
-- INTERNAL VARIABLES/FUNCTIONS
|
||||||
decl("map_t MapInfo[$*$];", con_lang.MAXVOLUMES+1, con_lang.MAXLEVELS)
|
decl("map_t MapInfo[$*$];", con_lang.MAXVOLUMES+1, con_lang.MAXLEVELS)
|
||||||
decl("char EpisodeNames[$][33];", con_lang.MAXVOLUMES)
|
decl("char g_volumeNames[$][33];", con_lang.MAXVOLUMES)
|
||||||
|
|
||||||
decl[[
|
decl[[
|
||||||
const int32_t myconnectindex;
|
const int32_t myconnectindex;
|
||||||
|
|
|
@ -129,7 +129,7 @@ g_modDir;
|
||||||
g_elSessionVar;
|
g_elSessionVar;
|
||||||
|
|
||||||
MapInfo;
|
MapInfo;
|
||||||
EpisodeNames;
|
g_volumeNames;
|
||||||
|
|
||||||
kopen4loadfrommod;
|
kopen4loadfrommod;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue