aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Sandulenko2014-01-25 18:10:51 +0400
committerEugene Sandulenko2014-01-25 18:10:51 +0400
commit0f99d91131ac3408c768d8440e1ab344f4a10563 (patch)
treef8bbbcb277e982e673bc4dee67be7285d22cd52d
parentd918a503eedf79aaef9e8fd3b6646c437cb6a81e (diff)
downloadscummvm-rg350-0f99d91131ac3408c768d8440e1ab344f4a10563.tar.gz
scummvm-rg350-0f99d91131ac3408c768d8440e1ab344f4a10563.tar.bz2
scummvm-rg350-0f99d91131ac3408c768d8440e1ab344f4a10563.zip
FULLPIPE: Implement FullpipeEngine::openMainMenu()
-rw-r--r--engines/fullpipe/modal.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/fullpipe/modal.cpp b/engines/fullpipe/modal.cpp
index 2c2252811d..a73d8f8bb5 100644
--- a/engines/fullpipe/modal.cpp
+++ b/engines/fullpipe/modal.cpp
@@ -760,7 +760,9 @@ void FullpipeEngine::openHelp() {
}
void FullpipeEngine::openMainMenu() {
- warning("STUB: FullpipeEngine::openMainMenu()");
+ ModalMainMenu *menu = new ModalMainMenu;
+
+ menu->_parentObj = g_fp->_modalObject;
}
} // End of namespace Fullpipe