From 339847872b3d35cf6bec5b4d0360a2e0e815dbbd Mon Sep 17 00:00:00 2001 From: Strangerke Date: Fri, 14 Nov 2014 08:33:33 +0100 Subject: ACCESS: Fix the call of doIntroduction --- engines/access/amazon/amazon_game.cpp | 12 +++++++----- 1 file 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(); } -- cgit v1.2.3