aboutsummaryrefslogtreecommitdiff
path: root/engines/dm/objectman.cpp
diff options
context:
space:
mode:
authorStrangerke2017-01-31 18:15:31 +0100
committerStrangerke2017-01-31 18:15:31 +0100
commitf4472d2f0a6f54b7a7b5dacceb069ad983d5e0fd (patch)
treee6cb3d5e303a32440cc1f6a4395c368c46f03f4f /engines/dm/objectman.cpp
parent2a74a975a38fa7113b92d98d48ddc03c76437f3c (diff)
downloadscummvm-rg350-f4472d2f0a6f54b7a7b5dacceb069ad983d5e0fd.tar.gz
scummvm-rg350-f4472d2f0a6f54b7a7b5dacceb069ad983d5e0fd.tar.bz2
scummvm-rg350-f4472d2f0a6f54b7a7b5dacceb069ad983d5e0fd.zip
DM: Fix GCC warnings
Diffstat (limited to 'engines/dm/objectman.cpp')
-rw-r--r--engines/dm/objectman.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/dm/objectman.cpp b/engines/dm/objectman.cpp
index 3b191e877c..66c6761f9a 100644
--- a/engines/dm/objectman.cpp
+++ b/engines/dm/objectman.cpp
@@ -132,7 +132,7 @@ void ObjectMan::loadObjectNames() {
}
IconIndice ObjectMan::getObjectType(Thing thing) {
- if (thing == Thing::_none)
+ if (thing == _vm->_thingNone)
return kDMIconIndiceNone;
int16 objectInfoIndex = _vm->_dungeonMan->getObjectInfoIndex(thing);