mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-14 16:07:39 +00:00
GRIM: Added newlines for lua debug traces
This commit is contained in:
parent
6c850c8f2e
commit
63faf359eb
@ -73,7 +73,7 @@ void Lua_V1::PrintDebug() {
|
||||
if (!lua_isstring(strObj))
|
||||
return;
|
||||
msg += Common::String(lua_getstring(strObj));
|
||||
debugN("%s", msg.c_str());
|
||||
debugN("%s\n", msg.c_str());
|
||||
}
|
||||
}
|
||||
|
||||
@ -86,7 +86,7 @@ void Lua_V1::PrintError() {
|
||||
if (!lua_isstring(strObj))
|
||||
return;
|
||||
msg += Common::String(lua_getstring(strObj));
|
||||
debugN("%s", msg.c_str());
|
||||
debugN("%s\n", msg.c_str());
|
||||
}
|
||||
}
|
||||
|
||||
@ -99,7 +99,7 @@ void Lua_V1::PrintWarning() {
|
||||
if (!lua_isstring(strObj))
|
||||
return;
|
||||
msg += Common::String(lua_getstring(strObj));
|
||||
debugN("%s", msg.c_str());
|
||||
debugN("%s\n", msg.c_str());
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user