[Scummvm-cvs-logs] SF.net SVN: scummvm:[44463] scummvm/trunk/engines/scumm/debugger.cpp

lordhoto at users.sourceforge.net lordhoto at users.sourceforge.net
Tue Sep 29 16:36:46 CEST 2009


Revision: 44463
          http://scummvm.svn.sourceforge.net/scummvm/?rev=44463&view=rev
Author:   lordhoto
Date:     2009-09-29 14:36:46 +0000 (Tue, 29 Sep 2009)

Log Message:
-----------
Add newline after "Available debug channels" in Cmd_Debug, now all debug channels will be listed in separate lines.

Modified Paths:
--------------
    scummvm/trunk/engines/scumm/debugger.cpp

Modified: scummvm/trunk/engines/scumm/debugger.cpp
===================================================================
--- scummvm/trunk/engines/scumm/debugger.cpp	2009-09-29 14:28:37 UTC (rev 44462)
+++ scummvm/trunk/engines/scumm/debugger.cpp	2009-09-29 14:36:46 UTC (rev 44463)
@@ -506,7 +506,7 @@
 
 	// 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(),


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list