diff options
Diffstat (limited to 'engines/access')
-rw-r--r-- | engines/access/amazon/amazon_game.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/access/amazon/amazon_game.cpp b/engines/access/amazon/amazon_game.cpp index e9c42d0647..44071753d2 100644 --- a/engines/access/amazon/amazon_game.cpp +++ b/engines/access/amazon/amazon_game.cpp @@ -83,6 +83,9 @@ void AmazonEngine::playGame() { _room = new AmazonRoom(this); _scripts = new AmazonScripts(this); + // Setup the game + setupGame(); + if (_loadSaveSlot == -1) { // Do introduction doIntroduction(); @@ -90,9 +93,6 @@ void AmazonEngine::playGame() { return; } - // Setup the game - setupGame(); - _screen->clearScreen(); _screen->setPanel(0); _screen->forceFadeOut(); |