diff options
Diffstat (limited to 'engines/dm/eventman.cpp')
-rw-r--r-- | engines/dm/eventman.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/dm/eventman.cpp b/engines/dm/eventman.cpp index e95f7e3bf1..73c47d1d02 100644 --- a/engines/dm/eventman.cpp +++ b/engines/dm/eventman.cpp @@ -1265,7 +1265,7 @@ void EventManager::commandProcessCommands160To162ClickInResurrectReincarnatePane } Thing thing = dunMan.getSquareFirstThing(mapX, mapY); for (;;) { // infinite - if (thing.getType() == k3_SensorThingType) { + if (thing.getType() == kDMThingTypeSensor) { ((Sensor*)dunMan.getThingData(thing))->setTypeDisabled(); break; } |