mirror of
https://github.com/edubart/otclient.git
synced 2025-10-19 14:03:26 +02:00
Fix platform issues regarding charsets
* IMPORTANT: A new dependency is required, boost_locale, comes with boost 1.50.0 or later * Copying and pasting special characters should now work * Running otclient from filepaths with special characters should work now too
This commit is contained in:
@@ -35,7 +35,7 @@ void LuaException::generateLuaErrorMessage(const std::string& error, int traceLe
|
||||
if(traceLevel >= 0)
|
||||
m_what = stdext::format("LUA ERROR: %s", g_lua.traceback(error, traceLevel));
|
||||
else
|
||||
m_what = stdext::format("LUA ERROR: %s", error);
|
||||
m_what = stdext::format("LUA ERROR:\n%s", error);
|
||||
}
|
||||
|
||||
LuaBadNumberOfArgumentsException::LuaBadNumberOfArgumentsException(int expected, int got)
|
||||
|
Reference in New Issue
Block a user