aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/lift.cpp
diff options
context:
space:
mode:
authorRetro-Junk2016-09-17 21:36:57 +0300
committerEugene Sandulenko2016-09-17 20:43:57 +0200
commit34b266b51d69617d852d0118b9992f0013f3c1e4 (patch)
treed12ef8868929eac9a8285b001f7a1fa9f2ef2e08 /engines/fullpipe/lift.cpp
parentec378ac3b74c001cb0972ca1949b8716d6eb6af5 (diff)
downloadscummvm-rg350-34b266b51d69617d852d0118b9992f0013f3c1e4.tar.gz
scummvm-rg350-34b266b51d69617d852d0118b9992f0013f3c1e4.tar.bz2
scummvm-rg350-34b266b51d69617d852d0118b9992f0013f3c1e4.zip
FULLPIPE: Mass fix incorrect inhibitor flag
Diffstat (limited to 'engines/fullpipe/lift.cpp')
-rw-r--r--engines/fullpipe/lift.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/fullpipe/lift.cpp b/engines/fullpipe/lift.cpp
index 10b41546b5..113ddf719e 100644
--- a/engines/fullpipe/lift.cpp
+++ b/engines/fullpipe/lift.cpp
@@ -358,7 +358,7 @@ void FullpipeEngine::lift_walkAndGo() {
mq->chain(0);
- _aniMan->_flags |= 1;
+ _aniMan->_flags |= 0x100;
}
}
@@ -423,12 +423,12 @@ void FullpipeEngine::lift_goAnimation() {
mq->addExCommandToEnd(ex);
- _aniMan->_flags &= 0xFEFF;
+ _aniMan->_flags &= ~0x100;
if (!mq->chain(_aniMan))
delete mq;
- _aniMan->_flags |= 1;
+ _aniMan->_flags |= 0x100;
return;
}