Skip to content

Commit d0b16c4

Browse files
committed
Update entry_point.cpp
1 parent fc9c60b commit d0b16c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

entry_point.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ namespace Overrides {
511511
NOINLINE int luaL_loadfilex_dt(lua_State* L, const char* filename, const char* mode) { return luaL_loadfilex(L, filename, mode); }
512512
NOINLINE int luaL_loadstring_dt(lua_State* L, const char* s) { return luaL_loadstring(L, s); }
513513
NOINLINE int luaL_newmetatable_dt(lua_State* L, const char* tname) { return luaL_newmetatable(L, tname); }
514-
NOINLINE int luaL_newmetatable_type_dt(lua_State* L, const char* tname) { return luaL_newmetatable_type(L, tname); }
514+
NOINLINE int luaL_newmetatable_type_dt(lua_State* L, const char* tname, int id) { return luaL_newmetatable_type(L, tname, id); }
515515
NOINLINE lua_State* luaL_newstate_dt(void) { return luaL_newstate(); }
516516
NOINLINE void luaL_openlib_dt(lua_State* L, const char* libname, const luaL_Reg* l, int nup) { return luaL_openlib(L, libname, l, nup); }
517517
NOINLINE void luaL_openlibs_dt(lua_State* L) { return luaL_openlibs(L); }

0 commit comments

Comments
 (0)