aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorJohannes Schickel2009-09-29 14:36:46 +0000
committerJohannes Schickel2009-09-29 14:36:46 +0000
commit70f7c46f4228c252db35ba9a3267a30fca906212 (patch)
tree1857c7f61395fc60f303f0ceaeda777003daf8ad /engines
parent2c2cf614c810cf68e8f6c9bddd17aa44944e50ef (diff)
downloadscummvm-rg350-70f7c46f4228c252db35ba9a3267a30fca906212.tar.gz
scummvm-rg350-70f7c46f4228c252db35ba9a3267a30fca906212.tar.bz2
scummvm-rg350-70f7c46f4228c252db35ba9a3267a30fca906212.zip
Add newline after "Available debug channels" in Cmd_Debug, now all debug channels will be listed in separate lines.
svn-id: r44463
Diffstat (limited to 'engines')
-rw-r--r--engines/scumm/debugger.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/debugger.cpp b/engines/scumm/debugger.cpp
index 63feeb9385..6ab7d8d7b0 100644
--- a/engines/scumm/debugger.cpp
+++ b/engines/scumm/debugger.cpp
@@ -506,7 +506,7 @@ bool ScummDebugger::Cmd_Debug(int argc, const char **argv) {
// No parameters given: Print out a list of all channels and their status
if (argc <= 1) {
- DebugPrintf("Available debug channels: ");
+ DebugPrintf("Available debug channels:\n");
for (Common::DebugChannelList::const_iterator i = lvls.begin(); i != lvls.end(); ++i) {
DebugPrintf("%c%s - %s (%s)\n", i->enabled ? '+' : ' ',
i->name.c_str(), i->description.c_str(),