aboutsummaryrefslogtreecommitdiff
path: root/engines/macventure/world.cpp
diff options
context:
space:
mode:
authorBorja Lorente2016-08-07 17:15:01 +0200
committerBorja Lorente2016-08-14 19:01:01 +0200
commit8608776768e9926d5be09904232647bff39d7e72 (patch)
treeef0306bfedddddfa7c84a5d2c68a0a88eca6b7dd /engines/macventure/world.cpp
parent0b36a77af42868edaab4434215bbae5d8c3a5e2f (diff)
downloadscummvm-rg350-8608776768e9926d5be09904232647bff39d7e72.tar.gz
scummvm-rg350-8608776768e9926d5be09904232647bff39d7e72.tar.bz2
scummvm-rg350-8608776768e9926d5be09904232647bff39d7e72.zip
MACVENTURE: Add debug channels
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 f5af029f8f..012e872272 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(6, "Attribute %x from object %x is %x", attrID, objID, res);
+ debugC(5, kMVDebugMain, "Attribute %x from object %x is %x", attrID, objID, res);
return res;
}