diff options
author | Strangerke | 2014-11-14 08:33:33 +0100 |
---|---|---|
committer | Paul Gilbert | 2014-12-12 22:33:11 -0500 |
commit | 339847872b3d35cf6bec5b4d0360a2e0e815dbbd (patch) | |
tree | f28c706fe10326e1cec17ab2b627932455fb31b6 | |
parent | bacb9badf859ebb4fa6c5b15f1cb46460f57ab5b (diff) | |
download | scummvm-rg350-339847872b3d35cf6bec5b4d0360a2e0e815dbbd.tar.gz scummvm-rg350-339847872b3d35cf6bec5b4d0360a2e0e815dbbd.tar.bz2 scummvm-rg350-339847872b3d35cf6bec5b4d0360a2e0e815dbbd.zip |
ACCESS: Fix the call of doIntroduction
-rw-r--r-- | engines/access/amazon/amazon_game.cpp | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/engines/access/amazon/amazon_game.cpp b/engines/access/amazon/amazon_game.cpp index b1a8bbe294..fc5a44f354 100644 --- a/engines/access/amazon/amazon_game.cpp +++ b/engines/access/amazon/amazon_game.cpp @@ -79,11 +79,11 @@ AmazonEngine::~AmazonEngine() { } void AmazonEngine::playGame() { - // Initialise Amazon game-specific objects + // Initialize Amazon game-specific objects _room = new AmazonRoom(this); _scripts = new AmazonScripts(this); - if (_loadSaveSlot != -1) { + if (_loadSaveSlot == -1) { // Do introduction doIntroduction(); if (shouldQuit()) @@ -111,10 +111,11 @@ void AmazonEngine::doIntroduction() { _events->setCursor(CURSOR_ARROW); _events->showCursor(); _screen->setPanel(0); + _screen->setPalette(); - //TODO: Implement the rest of the intro - return; - + _events->setCursor(CURSOR_ARROW); + _events->showCursor(); + _screen->setPanel(3); doTitle(); if (shouldQuit()) return; @@ -132,6 +133,7 @@ void AmazonEngine::doIntroduction() { } } + warning("TODO - More introduction code"); doTitle(); } |