Skip to content

Commit

Permalink
ACCESS: Move setupGame before doIntroduction to fix a crash
Browse files Browse the repository at this point in the history
  • Loading branch information
Strangerke authored and dreammaster committed Dec 13, 2014
1 parent f70012a commit a0294b6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions engines/access/amazon/amazon_game.cpp
Expand Up @@ -83,16 +83,16 @@ void AmazonEngine::playGame() {
_room = new AmazonRoom(this);
_scripts = new AmazonScripts(this);

// Setup the game
setupGame();

if (_loadSaveSlot == -1) {
// Do introduction
doIntroduction();
if (shouldQuit())
return;
}

// Setup the game
setupGame();

_screen->clearScreen();
_screen->setPanel(0);
_screen->forceFadeOut();
Expand Down

0 comments on commit a0294b6

Please sign in to comment.