diff options
Diffstat (limited to 'src/Bindings/LuaState.cpp')
-rw-r--r-- | src/Bindings/LuaState.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/Bindings/LuaState.cpp b/src/Bindings/LuaState.cpp index 7ec099982..c1e71bd5c 100644 --- a/src/Bindings/LuaState.cpp +++ b/src/Bindings/LuaState.cpp @@ -2004,7 +2004,7 @@ void cLuaState::LogStackTrace(lua_State * a_LuaState, int a_StartingDepth) -int cLuaState::ApiParamError(const char * a_MsgFormat, fmt::ArgList argp) +int cLuaState::ApiParamError(fmt::StringRef a_Msg) { // Retrieve current function name lua_Debug entry; @@ -2012,8 +2012,7 @@ int cLuaState::ApiParamError(const char * a_MsgFormat, fmt::ArgList argp) VERIFY(lua_getinfo(m_LuaState, "n", &entry)); // Compose the error message: - AString msg = Printf(a_MsgFormat, argp); - AString errorMsg = fmt::format("{0}: {1}", (entry.name != nullptr) ? entry.name : "<unknown function>", msg); + AString errorMsg = fmt::format("{0}: {1}", (entry.name != nullptr) ? entry.name : "<unknown function>", a_Msg); // Log everything into the console: LOGWARNING("%s", errorMsg.c_str()); |