aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/scenes/scene35.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/scenes/scene35.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/scenes/scene35.cpp')
-rw-r--r--engines/fullpipe/scenes/scene35.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/fullpipe/scenes/scene35.cpp b/engines/fullpipe/scenes/scene35.cpp
index 7a290ade3b..3cdbb42c1e 100644
--- a/engines/fullpipe/scenes/scene35.cpp
+++ b/engines/fullpipe/scenes/scene35.cpp
@@ -88,7 +88,7 @@ void sceneHandler35_startFlow() {
g_fp->_behaviorManager->setBehaviorEnabled(g_vars->scene35_bellyInflater, ST_PDV_SMALL, QU_PDV_SML_TRY, 0);
g_vars->scene35_bellyInflater->changeStatics2(ST_PDV_SMALL);
- g_vars->scene35_bellyInflater->_flags &= 0xFEFF;
+ g_vars->scene35_bellyInflater->_flags &= ~0x100;
MessageQueue *mq = new MessageQueue(g_fp->_currentScene->getMessageQueueById(QU_SC35_EATHOZE), 0, 0);
@@ -105,7 +105,7 @@ void sceneHandler35_startFlow() {
if (!mq->chain(g_vars->scene35_bellyInflater))
delete mq;
- g_vars->scene35_bellyInflater->_flags |= 1;
+ g_vars->scene35_bellyInflater->_flags |= 0x100;
getCurrSceneSc2MotionController()->enableLinks(sO_CloseThing, 1);