diff options
Diffstat (limited to 'engines/mohawk/myst_stacks/intro.cpp')
| -rw-r--r-- | engines/mohawk/myst_stacks/intro.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/engines/mohawk/myst_stacks/intro.cpp b/engines/mohawk/myst_stacks/intro.cpp index f6a7987b25..57937c1bcc 100644 --- a/engines/mohawk/myst_stacks/intro.cpp +++ b/engines/mohawk/myst_stacks/intro.cpp @@ -137,7 +137,14 @@ void Intro::introMovies_run() { void Intro::o_playIntroMovies(uint16 var, const ArgumentsArray &args) { _introMoviesRunning = true; - _introStep = 0; + + if (_vm->getFeatures() & GF_25TH) { + // In the 25th anniversary version, the Broderbund / Cyan Logo were already shown + // before the main menu. No need to play them again here. + _introStep = 4; + } else { + _introStep = 0; + } } void Intro::mystLinkBook_run() { |
