aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicola Mettifogo2007-10-19 21:26:35 +0000
committerNicola Mettifogo2007-10-19 21:26:35 +0000
commit359efa4f283ede8e8ade82d5cf5bb7d6034ed1dd (patch)
tree4658a51d65957f34d0c54e58a872dd223316bad9
parente45f4c25afb4eed8b1b44fc201dae7833125cb1d (diff)
downloadscummvm-rg350-359efa4f283ede8e8ade82d5cf5bb7d6034ed1dd.tar.gz
scummvm-rg350-359efa4f283ede8e8ade82d5cf5bb7d6034ed1dd.tar.bz2
scummvm-rg350-359efa4f283ede8e8ade82d5cf5bb7d6034ed1dd.zip
Fixed formatting of debug command output.
svn-id: r29232
-rw-r--r--engines/parallaction/debug.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/parallaction/debug.cpp b/engines/parallaction/debug.cpp
index 57d7e936d7..b16236dd96 100644
--- a/engines/parallaction/debug.cpp
+++ b/engines/parallaction/debug.cpp
@@ -121,7 +121,7 @@ bool Debugger::Cmd_LocalFlags(int argc, const char **argv) {
"+------------------------------+---------+\n");
for (uint i = 0; i < _vm->_localFlagNames->count(); i++) {
const char *value = ((flags & (1 << i)) == 0) ? "OFF" : "ON";
- DebugPrintf("|%-30s|% -6s|\n", _vm->_localFlagNames->item(i), value);
+ DebugPrintf("|%-30s| %-6s|\n", _vm->_localFlagNames->item(i), value);
}
DebugPrintf("+------------------------------+---------+\n");