aboutsummaryrefslogtreecommitdiff
path: root/engines/macventure/world.cpp
diff options
context:
space:
mode:
authorBorja Lorente2016-06-30 16:57:14 +0200
committerBorja Lorente2016-08-14 18:43:51 +0200
commit9403ef720a40ce47688b1957d1a64bc91c87df0a (patch)
tree362eaccbfd38aa5e862e561264cd7c95b21cb260 /engines/macventure/world.cpp
parent03a9ad4899f19de262a9eed6c9c50219ba44d466 (diff)
downloadscummvm-rg350-9403ef720a40ce47688b1957d1a64bc91c87df0a.tar.gz
scummvm-rg350-9403ef720a40ce47688b1957d1a64bc91c87df0a.tar.bz2
scummvm-rg350-9403ef720a40ce47688b1957d1a64bc91c87df0a.zip
MACVENTURE: Fix clicks and dragging offset
Diffstat (limited to 'engines/macventure/world.cpp')
-rw-r--r--engines/macventure/world.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/macventure/world.cpp b/engines/macventure/world.cpp
index 670f39902c..15e3c2a531 100644
--- a/engines/macventure/world.cpp
+++ b/engines/macventure/world.cpp
@@ -59,7 +59,7 @@ uint32 World::getObjAttr(ObjID objID, uint32 attrID) {
res >>= _engine->getGlobalSettings().attrShifts[attrID];
if (res & 0x8000)
res = -((res ^ 0xffff) + 1);
- debug(3, "Attribute %x from object %x is %x", attrID, objID, res);
+ debug(6, "Attribute %x from object %x is %x", attrID, objID, res);
return res;
}