luaL_openlib replacement fix

This commit is contained in:
MihailRis 2024-01-13 20:48:24 +03:00
parent c7fb887888
commit 3183513e55

View File

@ -14,10 +14,10 @@
#include "../../lighting/Lighting.h"
#include "../../logic/BlocksController.h"
#if (LUA_VERSION_NUM < 503 and not defined(LUAJIT_VERSION))
static void luaL_openlib(lua_State* L, const char* name, const luaL_Reg* libfuncs) {
#if (LUA_VERSION_NUM < 502)
inline void luaL_openlib(lua_State* L, const char* name, const luaL_Reg* libfuncs, int nup) {
lua_newtable(L);
luaL_setfuncs(L, libfuncs, 0);
luaL_setfuncs(L, libfuncs, nup);
lua_setglobal(L, name);
}
#endif