diff options
| -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(), | 
