[Scummvm-cvs-logs] SF.net SVN: scummvm: [29232] scummvm/trunk/engines/parallaction/debug.cpp

peres001 at users.sourceforge.net peres001 at users.sourceforge.net
Fri Oct 19 23:26:35 CEST 2007


Revision: 29232
          http://scummvm.svn.sourceforge.net/scummvm/?rev=29232&view=rev
Author:   peres001
Date:     2007-10-19 14:26:35 -0700 (Fri, 19 Oct 2007)

Log Message:
-----------
Fixed formatting of debug command output.

Modified Paths:
--------------
    scummvm/trunk/engines/parallaction/debug.cpp

Modified: scummvm/trunk/engines/parallaction/debug.cpp
===================================================================
--- scummvm/trunk/engines/parallaction/debug.cpp	2007-10-19 21:26:05 UTC (rev 29231)
+++ scummvm/trunk/engines/parallaction/debug.cpp	2007-10-19 21:26:35 UTC (rev 29232)
@@ -121,7 +121,7 @@
 				"+------------------------------+---------+\n");
 	for (uint i = 0; i < _vm->_localFlagNames->count(); i++) {
 		const char *value = ((flags & (1 << i)) == 0) ? "OFF" : "ON";
-		DebugPrintf("|%-30s|%   -6s|\n", _vm->_localFlagNames->item(i),  value);
+		DebugPrintf("|%-30s|   %-6s|\n", _vm->_localFlagNames->item(i),  value);
 	}
 	DebugPrintf("+------------------------------+---------+\n");
 


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