diff options
author | Johannes Schickel | 2009-09-29 14:36:46 +0000 |
---|---|---|
committer | Johannes Schickel | 2009-09-29 14:36:46 +0000 |
commit | 70f7c46f4228c252db35ba9a3267a30fca906212 (patch) | |
tree | 1857c7f61395fc60f303f0ceaeda777003daf8ad | |
parent | 2c2cf614c810cf68e8f6c9bddd17aa44944e50ef (diff) | |
download | scummvm-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
-rw-r--r-- | engines/scumm/debugger.cpp | 2 |
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(), |