aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe
diff options
context:
space:
mode:
authorEugene Sandulenko2014-01-02 13:25:48 +0200
committerEugene Sandulenko2014-01-02 13:25:48 +0200
commit6b87e3b01365879673558ace85287fc88d857f34 (patch)
tree11e520437fc9b03c822dbf107bce695c61b85376 /engines/fullpipe
parent3ccecb9f8e4962e7ac17e6cfa85c7841443fd854 (diff)
downloadscummvm-rg350-6b87e3b01365879673558ace85287fc88d857f34.tar.gz
scummvm-rg350-6b87e3b01365879673558ace85287fc88d857f34.tar.bz2
scummvm-rg350-6b87e3b01365879673558ace85287fc88d857f34.zip
FULLPIPE: Enable scene31. This completes the scene
Diffstat (limited to 'engines/fullpipe')
-rw-r--r--engines/fullpipe/scenes.cpp2
-rw-r--r--engines/fullpipe/scenes.h3
2 files changed, 5 insertions, 0 deletions
diff --git a/engines/fullpipe/scenes.cpp b/engines/fullpipe/scenes.cpp
index 69986ab5d5..a86e86ef5d 100644
--- a/engines/fullpipe/scenes.cpp
+++ b/engines/fullpipe/scenes.cpp
@@ -772,6 +772,7 @@ bool FullpipeEngine::sceneSwitcher(EntranceInfo *entrance) {
addMessageHandler(sceneHandler30, 2);
_updateCursorCallback = scene30_updateCursor;
break;
+#endif
case SC_31:
sceneVar = _gameLoader->_gameVar->getSubVarByName("SC_31");
@@ -784,6 +785,7 @@ bool FullpipeEngine::sceneSwitcher(EntranceInfo *entrance) {
_updateCursorCallback = defaultUpdateCursor;
break;
+#if 0
case SC_32:
sceneVar = _gameLoader->_gameVar->getSubVarByName("SC_32");
scene->preloadMovements(sceneVar);
diff --git a/engines/fullpipe/scenes.h b/engines/fullpipe/scenes.h
index 66bc0cf950..a39c1ccca1 100644
--- a/engines/fullpipe/scenes.h
+++ b/engines/fullpipe/scenes.h
@@ -109,6 +109,9 @@ void scene24_initScene(Scene *sc);
void scene24_setPoolState();
int sceneHandler24(ExCommand *cmd);
+void scene31_initScene(Scene *sc);
+int sceneHandler31(ExCommand *ex);
+
void sceneDbgMenu_initScene(Scene *sc);
int sceneHandlerDbgMenu(ExCommand *cmd);