diff options
author | Walter van Niftrik | 2016-03-08 16:30:28 +0100 |
---|---|---|
committer | Walter van Niftrik | 2016-03-09 10:03:13 +0100 |
commit | ce3af91ef865992fb744463f2bbb8dff8d0369cb (patch) | |
tree | 7fec6d62224a52e03d287509f6e3f9fdeb7461d4 | |
parent | 349245d9b42dbe72f8aaa9c8a7a1fe09f60c9787 (diff) | |
download | scummvm-rg350-ce3af91ef865992fb744463f2bbb8dff8d0369cb.tar.gz scummvm-rg350-ce3af91ef865992fb744463f2bbb8dff8d0369cb.tar.bz2 scummvm-rg350-ce3af91ef865992fb744463f2bbb8dff8d0369cb.zip |
ADL: Disable GMM restore on restart prompt
At the end of the game a restart command is executed
from the global command list. As we assumed that this
would not occur, we disable restoring on the restart
prompt, at least for now.
-rw-r--r-- | engines/adl/adl.cpp | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/engines/adl/adl.cpp b/engines/adl/adl.cpp index 8e374fa8f6..1ab74c3cf6 100644 --- a/engines/adl/adl.cpp +++ b/engines/adl/adl.cpp @@ -946,16 +946,7 @@ void AdlEngine::doActions(const Command &command, byte noun, byte offset) { break; case IDO_ACT_RESTART: { _display->printString(_strings.playAgain); - - // We allow restoring via GMM here - _canRestoreNow = true; Common::String input = inputString(); - _canRestoreNow = false; - - // If the user restored with the GMM, we break off the restart - if (_isRestoring) - return; - if (input.size() == 0 || input[0] != APPLECHAR('N')) { _isRestarting = true; _display->clear(0x00); @@ -1036,18 +1027,11 @@ bool AdlEngine::doOneCommand(const Commands &commands, byte verb, byte noun) { void AdlEngine::doAllCommands(const Commands &commands, byte verb, byte noun) { Commands::const_iterator cmd; - bool oldIsRestoring = _isRestoring; for (cmd = commands.begin(); cmd != commands.end(); ++cmd) { uint offset = 0; if (matchCommand(*cmd, verb, noun, &offset)) doActions(*cmd, noun, offset); - - // We assume no restarts happen in this command group. This - // simplifies enabling GMM savegame loading on the restart - // prompt. - if (_isRestarting || _isRestoring != oldIsRestoring) - error("Unexpected restart action encountered"); } } |