From 70396e6fbac882780886327dfd673b52270bc7e2 Mon Sep 17 00:00:00 2001 From: Filippos Karapetis Date: Fri, 18 Dec 2015 14:06:07 +0200 Subject: LAB: Handle some differences in the intro of the Amiga version --- engines/lab/intro.cpp | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/engines/lab/intro.cpp b/engines/lab/intro.cpp index 22ad25abfc..9fbd0b3def 100644 --- a/engines/lab/intro.cpp +++ b/engines/lab/intro.cpp @@ -241,12 +241,12 @@ void Intro::introSequence() { _vm->_anim->_doBlack = true; - if (_vm->getPlatform() != Common::kPlatformWindows) { + if (_vm->getPlatform() == Common::kPlatformDOS) { nReadPict("EA0", true); nReadPict("EA1", true); nReadPict("EA2", true); nReadPict("EA3", true); - } else { + } else if (_vm->getPlatform() == Common::kPlatformWindows) { nReadPict("WYRMKEEP", true); // Wait 4 seconds for (uint16 i = 0; i < 4 * 1000 / 10; i++) { @@ -258,10 +258,14 @@ void Intro::introSequence() { } _vm->_graphics->blackAllScreen(); - _vm->_music->initMusic("Music:BackGrou"); + + if (_vm->getPlatform() == Common::kPlatformAmiga) + _vm->_music->initMusic("Music:BackGround"); + else + _vm->_music->initMusic("Music:BackGrou"); _vm->_anim->_noPalChange = true; - if (_vm->getPlatform() != Common::kPlatformWindows) + if (_vm->getPlatform() == Common::kPlatformDOS) nReadPict("TNDcycle.pic", true); else nReadPict("TNDcycle2.pic", true); -- cgit v1.2.3