mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-15 09:11:48 +00:00
Merge branch 'next' into toast_slopes
This commit is contained in:
commit
31a59f8ae6
2 changed files with 5 additions and 2 deletions
|
@ -8276,6 +8276,9 @@ static inline int lib_getenum(lua_State *L)
|
|||
} else if (fastcmp(word,"VERSIONSTRING")) {
|
||||
lua_pushstring(L, VERSIONSTRING);
|
||||
return 1;
|
||||
} else if (fastcmp(word, "token")) {
|
||||
lua_pushinteger(L, token);
|
||||
return 1;
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
|
|
@ -475,11 +475,11 @@ UINT16 W_LoadWadFile(const char *filename)
|
|||
//
|
||||
CONS_Printf(M_GetText("Added file %s (%u lumps)\n"), filename, numlumps);
|
||||
wadfiles[numwadfiles] = wadfile;
|
||||
W_LoadDehackedLumps(numwadfiles);
|
||||
numwadfiles++; // must come BEFORE W_LoadDehackedLumps, so any addfile called by COM_BufInsertText called by Lua doesn't overwrite what we just loaded
|
||||
W_LoadDehackedLumps(numwadfiles-1);
|
||||
|
||||
W_InvalidateLumpnumCache();
|
||||
|
||||
numwadfiles++;
|
||||
return wadfile->numlumps;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue