diff options
author | Max Horn | 2002-12-15 23:22:37 +0000 |
---|---|---|
committer | Max Horn | 2002-12-15 23:22:37 +0000 |
commit | cfc4bc586a732eb0c3c660e380d747c4f90eecd3 (patch) | |
tree | 62030e7d332ae9f8f0e15bd8c4090c40c3876e40 | |
parent | 826cd4b076c885e5e676b3b69ba1621ded918f9f (diff) | |
download | scummvm-rg350-cfc4bc586a732eb0c3c660e380d747c4f90eecd3.tar.gz scummvm-rg350-cfc4bc586a732eb0c3c660e380d747c4f90eecd3.tar.bz2 scummvm-rg350-cfc4bc586a732eb0c3c660e380d747c4f90eecd3.zip |
more space for debug output
svn-id: r5984
-rw-r--r-- | scumm/debug.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/scumm/debug.cpp b/scumm/debug.cpp index c41c7da693..d5f2c0ccd2 100644 --- a/scumm/debug.cpp +++ b/scumm/debug.cpp @@ -337,20 +337,20 @@ void ScummDebugger::printActors(int act) 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() |