Skip to content

Commit

Permalink
correct lua_pushvfstring
Browse files Browse the repository at this point in the history
  • Loading branch information
4z0t committed Nov 30, 2024
1 parent f62d7ef commit a27239e
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 @@ -382,7 +382,7 @@ const char *luaL_optlstring(lua_State *, int, const char *,
const char *lua_getlocal(lua_State *, const lua_Debug *, int) asm("0x912680");
const char *lua_getupvalue(lua_State *, int, int) asm("0x90d9a0");
const char *lua_pushfstring(lua_State *, const char *, ...) asm("0x90ce90");
const char *lua_pushvfstring(lua_State *, const char *, char *) asm("0x90ce50");
const char *lua_pushvfstring(lua_State *, const char *, va_list args) asm("0x90ce50");
const char *lua_setlocal(lua_State *, const lua_Debug *, int) asm("0x9126f0");
const char *lua_setupvalue(lua_State *, int, int) asm("0x90da00");
const char *lua_tostring(lua_State *, int) asm("0x90ca90");
Expand Down

0 comments on commit a27239e

Please sign in to comment.