aboutsummaryrefslogtreecommitdiff
path: root/engines/mads/nebular/game_nebular.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2014-07-27 11:10:59 -0400
committerPaul Gilbert2014-07-27 11:10:59 -0400
commit913751edae64a6ff35ab5f65822666273d279ea9 (patch)
treee0af8850b434e276c301731033942692f0d441ff /engines/mads/nebular/game_nebular.cpp
parent9b00eedd40d5abc1c13723608633f9bc488f7fd1 (diff)
downloadscummvm-rg350-913751edae64a6ff35ab5f65822666273d279ea9.tar.gz
scummvm-rg350-913751edae64a6ff35ab5f65822666273d279ea9.tar.bz2
scummvm-rg350-913751edae64a6ff35ab5f65822666273d279ea9.zip
MADS: Main menu selections now working
Diffstat (limited to 'engines/mads/nebular/game_nebular.cpp')
-rw-r--r--engines/mads/nebular/game_nebular.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/mads/nebular/game_nebular.cpp b/engines/mads/nebular/game_nebular.cpp
index 8fddf8b9c4..902f42507a 100644
--- a/engines/mads/nebular/game_nebular.cpp
+++ b/engines/mads/nebular/game_nebular.cpp
@@ -60,9 +60,7 @@ ProtectionResult GameNebular::checkCopyProtection() {
}
void GameNebular::startGame() {
- // Show the main menu
- // TODO: Show the main menu here
-
+ /*
// Check copy protection
ProtectionResult protectionResult = checkCopyProtection();
switch (protectionResult) {
@@ -80,11 +78,13 @@ void GameNebular::startGame() {
// Copy protection check succeeded
break;
}
+ */
initSection(_sectionNumber);
_statusFlag = true;
- _vm->_dialogs->_pendingDialog = DIALOG_DIFFICULTY;
+ // Show the main menu
+ _vm->_dialogs->_pendingDialog = DIALOG_MAIN_MENU;
_vm->_dialogs->showDialog();
_vm->_dialogs->_pendingDialog = DIALOG_NONE;