aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/lab/intro.cpp11
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);