diff options
| author | Max Horn | 2004-08-15 14:40:02 +0000 | 
|---|---|---|
| committer | Max Horn | 2004-08-15 14:40:02 +0000 | 
| commit | 6c484970598ed43f937c5066c671bae5419ff86c (patch) | |
| tree | 3580171685d7ea4d2afa38524d16eb6869436c43 | |
| parent | cb052da949eb752f7860b0cc11a1b920fff2ed08 (diff) | |
| download | scummvm-rg350-6c484970598ed43f937c5066c671bae5419ff86c.tar.gz scummvm-rg350-6c484970598ed43f937c5066c671bae5419ff86c.tar.bz2 scummvm-rg350-6c484970598ed43f937c5066c671bae5419ff86c.zip | |
Show a bit less info so that the output of the 'actors' command fits into the console
svn-id: r14628
| -rw-r--r-- | scumm/debugger.cpp | 14 | 
1 files changed, 7 insertions, 7 deletions
| diff --git a/scumm/debugger.cpp b/scumm/debugger.cpp index 5ad7f4811d..896afb27d0 100644 --- a/scumm/debugger.cpp +++ b/scumm/debugger.cpp @@ -417,18 +417,18 @@ bool ScummDebugger::Cmd_PrintActor(int argc, const char **argv) {  	int i;  	Actor *a; -	DebugPrintf("+----------------------------------------------------------------+\n"); -	DebugPrintf("|# |room|  x |  y |elev|cos|width|box|mov| zp|frame|scale|dir|cls|\n"); -	DebugPrintf("+--+----+----+----+----+---+-----+---+---+---+-----+-----+---+---+\n"); +	DebugPrintf("+-----------------------------------------------------+\n"); +	DebugPrintf("|# |  x |  y | w |elev|cos|box|mov| zp|frm|scl|dir|cls|\n"); +	DebugPrintf("+--+----+----+---+----+---+---+---+---+---+---+---+---+\n");  	for (i = 1; i < _vm->_numActors; i++) {  		a = &_vm->_actors[i];  		if (a->visible) -			DebugPrintf("|%2d|%4d|%4d|%4d|%4d|%3d|%5d|%3d|%3d|%3d|%5d|%5d|%3d|$%02x|\n", -						 a->number, a->room, a->_pos.x, a->_pos.y, a->getElevation(), a->costume, -						 a->width, a->walkbox, a->moving, a->forceClip, a->frame, +			DebugPrintf("|%2d|%4d|%4d|%3d|%4d|%3d|%3d|%3d|%3d|%3d|%3d|%3d|$%02x|\n", +						 a->number, a->_pos.x, a->_pos.y, a->width, a->getElevation(), +						 a->costume, a->walkbox, a->moving, a->forceClip, a->frame,  						 a->scalex, a->getFacing(), int(_vm->_classData[a->number]&0xFF));  	} -	DebugPrintf("+----------------------------------------------------------------+\n"); +	DebugPrintf("+-----------------------------------------------------+\n");  	return true;  } | 
