diff options
author | Filippos Karapetis | 2015-12-18 04:21:22 +0200 |
---|---|---|
committer | Willem Jan Palenstijn | 2015-12-23 21:34:09 +0100 |
commit | 1c02487a00e100dcae1755742d2ab4412688c5aa (patch) | |
tree | ac35579d6a784e2318b0d58418a64794fa4a9c40 | |
parent | 0004488441224b172e9f785478af30572e53302c (diff) | |
download | scummvm-rg350-1c02487a00e100dcae1755742d2ab4412688c5aa.tar.gz scummvm-rg350-1c02487a00e100dcae1755742d2ab4412688c5aa.tar.bz2 scummvm-rg350-1c02487a00e100dcae1755742d2ab4412688c5aa.zip |
LAB: Fix the intro of the DOS version
-rw-r--r-- | engines/lab/intro.cpp | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/engines/lab/intro.cpp b/engines/lab/intro.cpp index e4c84dc768..abd7018b59 100644 --- a/engines/lab/intro.cpp +++ b/engines/lab/intro.cpp @@ -338,8 +338,10 @@ void Intro::introSequence() { } doPictText("i.1", msgFont, true); - doPictText("i.2A", msgFont, true); - doPictText("i.2B", msgFont, true); + if (_vm->getPlatform() == Common::kPlatformWindows) { + doPictText("i.2A", msgFont, true); + doPictText("i.2B", msgFont, true); + } _vm->_graphics->blackAllScreen(); _vm->_music->updateMusic(); @@ -357,7 +359,10 @@ void Intro::introSequence() { nReadPict("Stiles3", true); doPictText("i.6", msgFont, false); - nReadPict("Platform2", true); + if (_vm->getPlatform() == Common::kPlatformWindows) + nReadPict("Platform2", true); + else + nReadPict("Platform", true); doPictText("i.7", msgFont, false); nReadPict("Subway.1", true); |