aboutsummaryrefslogtreecommitdiff
path: root/scumm/debug.cpp
diff options
context:
space:
mode:
authorMax Horn2002-12-09 01:27:40 +0000
committerMax Horn2002-12-09 01:27:40 +0000
commit0720fa80c8f745310f7fd9753ff5242245bf9646 (patch)
tree178a18792d54bf2849792d8c7ff78bbddb8a5d9f /scumm/debug.cpp
parent2345aa0307b079e5d2261e610432b9d94492b447 (diff)
downloadscummvm-rg350-0720fa80c8f745310f7fd9753ff5242245bf9646.tar.gz
scummvm-rg350-0720fa80c8f745310f7fd9753ff5242245bf9646.tar.bz2
scummvm-rg350-0720fa80c8f745310f7fd9753ff5242245bf9646.zip
cleanup
svn-id: r5893
Diffstat (limited to 'scumm/debug.cpp')
-rw-r--r--scumm/debug.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/scumm/debug.cpp b/scumm/debug.cpp
index 6cd8d23ad6..669a2c7abb 100644
--- a/scumm/debug.cpp
+++ b/scumm/debug.cpp
@@ -308,15 +308,15 @@ void ScummDebugger::printScripts()
int i;
ScriptSlot *ss;
- printf("+---------------------------------+\n");
- printf("|# |num|sta|typ|un1|un2|fc|cut|un5|\n");
- printf("+--+---+---+---+---+---+--+---+---+\n");
+ printf("+------------------------------\n");
+ printf("|# |num|sta|typ|un1|un2|fc|cut|\n");
+ printf("+--+---+---+---+---+---+--+---+\n");
for (i = 0; i < 25; i++) {
ss = &_s->vm.slot[i];
if (ss->number) {
- printf("|%2d|%3d|%3d|%3d|%3d|%3d|%2d|%3d|%3d|\n",
+ printf("|%2d|%3d|%3d|%3d|%3d|%3d|%2d|%3d|\n",
i, ss->number, ss->status, ss->where, ss->unk1, ss->unk2,
- ss->freezeCount, ss->cutsceneOverride, ss->unk5);
+ ss->freezeCount, ss->cutsceneOverride);
}
}
printf("+-------------------------------------+\n");