aboutsummaryrefslogtreecommitdiff
path: root/scumm/object.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'scumm/object.cpp')
-rw-r--r--scumm/object.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/scumm/object.cpp b/scumm/object.cpp
index 2298d6270b..c0aa01b186 100644
--- a/scumm/object.cpp
+++ b/scumm/object.cpp
@@ -477,10 +477,7 @@ void ScummEngine::drawObject(int obj, int arg) {
if (numstrip != 0) {
byte flags;
if (_version == 8)
- // TODO: This makes no sense, Kirben: flag bit 4 (16 = 2^4) isn't used;
- // even if it was, it'd probably mean something different for us than for
- // COMI. Maybe you mean: "flags = (od.flag & 16) != 0;" ?
- flags = (od.flag & 16);
+ flags = (od.flag & 16) == 0;
else if (_features & GF_HUMONGOUS)
// TODO: Should be read from object header
flags = 0;