aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRetro-Junk2016-08-26 21:40:02 +0300
committerEugene Sandulenko2016-08-26 21:44:26 +0200
commitdd911c92f60f8df2d2f2b1e0c02e04262143a582 (patch)
tree4bb472206f6cf1bcf16176d69292f18f98c5a1b5
parente880fd74edeb79852fe8746eb924055ea8facffc (diff)
downloadscummvm-rg350-dd911c92f60f8df2d2f2b1e0c02e04262143a582.tar.gz
scummvm-rg350-dd911c92f60f8df2d2f2b1e0c02e04262143a582.tar.bz2
scummvm-rg350-dd911c92f60f8df2d2f2b1e0c02e04262143a582.zip
FULLPIPE: Make elevators actually work
-rw-r--r--engines/fullpipe/lift.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/engines/fullpipe/lift.cpp b/engines/fullpipe/lift.cpp
index d066c89d4a..93bfbaaa24 100644
--- a/engines/fullpipe/lift.cpp
+++ b/engines/fullpipe/lift.cpp
@@ -392,7 +392,8 @@ void FullpipeEngine::lift_clickButton() {
lift_walkAndGo();
}
-void FullpipeEngine::lift_goAnimation() { if (_lastLiftButton) {
+void FullpipeEngine::lift_goAnimation() {
+ if (_lastLiftButton) {
int parentId = _currentScene->_sceneId;
int buttonId = lift_getButtonIdN(_lastLiftButton->_statics->_staticsId);
@@ -428,6 +429,8 @@ void FullpipeEngine::lift_goAnimation() { if (_lastLiftButton) {
delete mq;
_aniMan->_flags |= 1;
+
+ return;
}
}
}