aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/engine/eobcommon.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/kyra/engine/eobcommon.cpp')
-rw-r--r--engines/kyra/engine/eobcommon.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/engines/kyra/engine/eobcommon.cpp b/engines/kyra/engine/eobcommon.cpp
index 9b15c601a8..198fc5ed20 100644
--- a/engines/kyra/engine/eobcommon.cpp
+++ b/engines/kyra/engine/eobcommon.cpp
@@ -574,9 +574,9 @@ Common::Error EoBCoreEngine::go() {
action = 0;
if (_gameToLoad != -1) {
+ startupLoad();
if (loadGameState(_gameToLoad).getCode() != Common::kNoError)
error("Couldn't load game slot %d on startup", _gameToLoad);
- startupLoad();
_gameToLoad = -1;
} else {
_screen->showMouse();
@@ -585,9 +585,10 @@ Common::Error EoBCoreEngine::go() {
if (action == -1) {
// load game
+ startupLoad();
repeatLoop = _gui->runLoadMenu(72, 14);
- if (repeatLoop && !shouldQuit())
- startupLoad();
+ //if (!repeatLoop && !shouldQuit())
+
} else if (action == -2) {
// new game
repeatLoop = startCharacterGeneration();