[Scummvm-cvs-logs] CVS: scummvm/scumm debug.cpp,1.10,1.11

Max Horn fingolfin at users.sourceforge.net
Sun Dec 15 15:23:02 CET 2002


Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1:/tmp/cvs-serv23789

Modified Files:
	debug.cpp 
Log Message:
more space for debug output

Index: debug.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/debug.cpp,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- debug.cpp	15 Dec 2002 00:39:33 -0000	1.10
+++ debug.cpp	15 Dec 2002 23:22:37 -0000	1.11
@@ -337,20 +337,20 @@
 	int i;
 	Actor *a;
 
-	printf("+-----------------------------------------------------------------+\n");
-	printf("|# |room| x | y |elev|cos|width|box|mov|zp|frame|scale|spd|dir|cls|\n");
-	printf("+--+----+---+---+----+---+-----+---+---+--+-----+-----+---+---+---+\n");
+	printf("+--------------------------------------------------------------------+\n");
+	printf("|# |room|  x |  y |elev|cos|width|box|mov| zp|frame|scale|spd|dir|cls|\n");
+	printf("+--+----+----+----+----+---+-----+---+---+---+-----+-----+---+---+---+\n");
 	for (i = 1; i < _s->NUM_ACTORS; i++) {
 		if (act == -1 || act == i) {
 			a = &_s->_actors[i];
 			if (a->visible)
-				printf("|%2d|%4d|%3d|%3d|%4d|%3d|%5d|%3d|%3d|%2d|%5d|%5d|%3d|%3d|$%02x|\n",
+				printf("|%2d|%4d|%4d|%4d|%4d|%3d|%5d|%3d|%3d|%3d|%5d|%5d|%3d|%3d|$%02x|\n",
 							 a->number, a->room, a->x, a->y, a->elevation, a->costume,
 							 a->width, a->walkbox, a->moving, a->forceClip, a->frame,
 							 a->scalex, a->speedx, a->facing, int(_s->_classData[a->number]&0xFF));
 		}
 	}
-	printf("+-----------------------------------------------------------------+\n");
+	printf("+--------------------------------------------------------------------+\n");
 }
 
 void ScummDebugger::printScripts()





More information about the Scummvm-git-logs mailing list