aboutsummaryrefslogtreecommitdiff
path: root/debug.cpp
diff options
context:
space:
mode:
authorLudvig Strigeus2001-11-27 17:56:04 +0000
committerLudvig Strigeus2001-11-27 17:56:04 +0000
commit1c0a7cd2e71e459f37323a25d0adf853ac882a2c (patch)
treee5a6743452a7798e3118f5cbb5f22ee923396d96 /debug.cpp
parent38e2a886ce152ed2b0cfe9777a0514a10c56de04 (diff)
downloadscummvm-rg350-1c0a7cd2e71e459f37323a25d0adf853ac882a2c.tar.gz
scummvm-rg350-1c0a7cd2e71e459f37323a25d0adf853ac882a2c.tar.bz2
scummvm-rg350-1c0a7cd2e71e459f37323a25d0adf853ac882a2c.zip
some BOMP support,
some fixes svn-id: r3506
Diffstat (limited to 'debug.cpp')
-rw-r--r--debug.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/debug.cpp b/debug.cpp
index 169178d4d0..5dd4c5f7fa 100644
--- a/debug.cpp
+++ b/debug.cpp
@@ -198,7 +198,7 @@ void ScummDebugger::printActors(int act) {
a = &_s->actor[i];
if (a->visible)
printf("|%2d|%4d|%3d %3d|%4d|%3d|%5d|%3d|%3d|%2d|%5d|%5d|%3d|%3d|\n",
- i,a->room,a->x,a->y,a->elevation,a->costume,a->width,a->walkbox,a->moving,a->neverZClip,a->frame,a->scalex,a->speedx,a->facing);
+ i,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);
}
}
printf("+--------------------------------------------------------------+\n");