We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a227d6 commit b7a5573Copy full SHA for b7a5573
engines/sword25/script/luabindhelper.cpp
@@ -412,7 +412,7 @@ Common::String LuaBindhelper::stackDump(lua_State *L) {
412
oss += "------------------- Stack Dump -------------------\n";
413
414
while (i) {
415
- oss += i + ": " + getLuaValueInfo(L, i) + "\n";
+ oss += Common::String::format("%d: ", i) + getLuaValueInfo(L, i) + "\n";
416
i--;
417
}
418
0 commit comments