aboutsummaryrefslogtreecommitdiff
path: root/scumm/debug.cpp
diff options
context:
space:
mode:
authorMax Horn2002-08-24 21:57:00 +0000
committerMax Horn2002-08-24 21:57:00 +0000
commit6d5529e0dd631f38ef4932bdca015c89d4bb5c42 (patch)
tree532c56eabc7d63dbf5e4db3a0c8484358e3bee9a /scumm/debug.cpp
parenta06c0b2327c3bb2d1b1473a11246acc5e715a8fa (diff)
downloadscummvm-rg350-6d5529e0dd631f38ef4932bdca015c89d4bb5c42.tar.gz
scummvm-rg350-6d5529e0dd631f38ef4932bdca015c89d4bb5c42.tar.bz2
scummvm-rg350-6d5529e0dd631f38ef4932bdca015c89d4bb5c42.zip
fixed warnings
svn-id: r4833
Diffstat (limited to 'scumm/debug.cpp')
-rw-r--r--scumm/debug.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/debug.cpp b/scumm/debug.cpp
index 6957f13bf4..1f37e01df6 100644
--- a/scumm/debug.cpp
+++ b/scumm/debug.cpp
@@ -270,7 +270,7 @@ void ScummDebugger::printActors(int act)
printf("|%2d|%4d|%3d %3d|%4d|%3d|%5d|%3d|%3d|%2d|%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, _s->_classData[a->number]);
+ a->scalex, a->speedx, a->facing, int(_s->_classData[a->number]&0xFF));
}
}
printf("+--------------------------------------------------------------+\n");