From 70f7c46f4228c252db35ba9a3267a30fca906212 Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Tue, 29 Sep 2009 14:36:46 +0000 Subject: Add newline after "Available debug channels" in Cmd_Debug, now all debug channels will be listed in separate lines. svn-id: r44463 --- engines/scumm/debugger.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines') 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(), -- cgit v1.2.3