Skip to content

Commit

Permalink
correct lua_traceback
Browse files Browse the repository at this point in the history
  • Loading branch information
4z0t committed Nov 30, 2024
1 parent a27239e commit ed6ea92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/LuaAPI.h
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ int lua_resume(lua_State *, int) asm("0x914610");
int lua_setfenv(lua_State *, int) asm("0x90d3b0");
int lua_sethook(lua_State *, lua_Hook, int, int) asm("0x912560");
int lua_setmetatable(lua_State *, int) asm("0x90d340");
int lua_traceback(lua_State *, const char *, int) asm("0x911ea0");
int lua_traceback(lua_State *, const char *) asm("0x911ea0");
int lua_type(lua_State *, int) asm("0x90c740");
int lua_yield(lua_State *, int) asm("0x913e40");
int luaopen_base(lua_State *) asm("0x90fd90");
Expand Down

0 comments on commit ed6ea92

Please sign in to comment.