SWORD25: Correct stack dump debug function output.

This was introduced by the change from C++ output streams (<<) to
Common::String output. Thanks to salty-horse for finding this.
This commit is contained in:
D G Turner 2012-04-22 14:32:44 +01:00
parent 8a227d6903
commit b7a5573dda

View File

@ -412,7 +412,7 @@ Common::String LuaBindhelper::stackDump(lua_State *L) {
oss += "------------------- Stack Dump -------------------\n";
while (i) {
oss += i + ": " + getLuaValueInfo(L, i) + "\n";
oss += Common::String::format("%d: ", i) + getLuaValueInfo(L, i) + "\n";
i--;
}