aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe
diff options
context:
space:
mode:
authorEugene Sandulenko2014-02-12 21:24:04 +0200
committerEugene Sandulenko2014-02-13 00:50:41 +0200
commitf9ecd6518a93ede5f98510ce2cccd9ebf2a19902 (patch)
tree4f04bd8f02bc9ff961dc3000c8160e80d7d8a9c9 /engines/fullpipe
parent2c5e338d3366ad33f09b9f9976907f814b5c7afd (diff)
downloadscummvm-rg350-f9ecd6518a93ede5f98510ce2cccd9ebf2a19902.tar.gz
scummvm-rg350-f9ecd6518a93ede5f98510ce2cccd9ebf2a19902.tar.bz2
scummvm-rg350-f9ecd6518a93ede5f98510ce2cccd9ebf2a19902.zip
FULLPIPE: Implement sceneHandler09_updateScreenCallback()
Diffstat (limited to 'engines/fullpipe')
-rw-r--r--engines/fullpipe/scenes/scene09.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/engines/fullpipe/scenes/scene09.cpp b/engines/fullpipe/scenes/scene09.cpp
index ce7fecc409..34d976b836 100644
--- a/engines/fullpipe/scenes/scene09.cpp
+++ b/engines/fullpipe/scenes/scene09.cpp
@@ -211,9 +211,12 @@ void scene09_initScene(Scene *sc) {
}
int sceneHandler09_updateScreenCallback() {
- warning("STUB: int sceneHandler09_updateScreenCallback()");
+ int res = g_fp->drawArcadeOverlay(g_fp->_objectIdAtCursor == ANI_VISUNCHIK || g_vars->scene09_var10 >= 0);
- return 0;
+ if (!res)
+ g_fp->_updateScreenCallback = 0;
+
+ return res;
}
int scene09_updateCursor() {