mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-15 14:18:37 +00:00
AGS: Remove extra newlines from debug messages
This commit is contained in:
parent
bfe16d0ed4
commit
8f1edbb295
@ -122,7 +122,7 @@ void AGSPlatformDriver::WriteStdOut(const char *fmt, ...) {
|
||||
Common::String str = Common::String::vformat(fmt, args);
|
||||
va_end(args);
|
||||
|
||||
debug("%s\n", str.c_str());
|
||||
debug("%s", str.c_str());
|
||||
}
|
||||
|
||||
void AGSPlatformDriver::WriteStdErr(const char *fmt, ...) {
|
||||
@ -131,7 +131,7 @@ void AGSPlatformDriver::WriteStdErr(const char *fmt, ...) {
|
||||
Common::String str = Common::String::vformat(fmt, args);
|
||||
va_end(args);
|
||||
|
||||
debug("ERROR: %s\n", str.c_str());
|
||||
debug("ERROR: %s", str.c_str());
|
||||
}
|
||||
|
||||
void AGSPlatformDriver::YieldCPU() {
|
||||
|
Loading…
Reference in New Issue
Block a user