diff options
author | Matthew Hoops | 2012-04-07 15:19:32 -0400 |
---|---|---|
committer | D G Turner | 2012-04-08 03:29:53 +0100 |
commit | 8e107f8c78e9c17fd908c205c12fbb718f868648 (patch) | |
tree | 0aea540aeb0de95c27d8188ad197426fc7d1aea5 /engines | |
parent | 7b6c4bb8e1cc7a9ffd79cf4908a0f2e29a684f76 (diff) | |
download | scummvm-rg350-8e107f8c78e9c17fd908c205c12fbb718f868648.tar.gz scummvm-rg350-8e107f8c78e9c17fd908c205c12fbb718f868648.tar.bz2 scummvm-rg350-8e107f8c78e9c17fd908c205c12fbb718f868648.zip |
MOHAWK: Enable the SVQ1 intro for Myst ME Mac
Diffstat (limited to 'engines')
-rw-r--r-- | engines/mohawk/myst_stacks/intro.cpp | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/engines/mohawk/myst_stacks/intro.cpp b/engines/mohawk/myst_stacks/intro.cpp index 0af386f51f..a5f608dbbf 100644 --- a/engines/mohawk/myst_stacks/intro.cpp +++ b/engines/mohawk/myst_stacks/intro.cpp @@ -133,14 +133,8 @@ void Intro::introMovies_run() { case 6: _introStep = 7; - if (!(_vm->getFeatures() & GF_DEMO)) { // The demo doesn't have the intro video - if ((_vm->getFeatures() & GF_ME) && _vm->getPlatform() == Common::kPlatformMacintosh) - // intro.mov uses Sorenson, introc uses Cinepak. Otherwise, they're the same. - // TODO: Switch back to the SVQ version when we support it - _vm->_video->playMovie(_vm->wrapMovieFilename("introc", kIntroStack)); - else - _vm->_video->playMovie(_vm->wrapMovieFilename("intro", kIntroStack)); - } + if (!(_vm->getFeatures() & GF_DEMO)) // The demo doesn't have the intro video + _vm->_video->playMovie(_vm->wrapMovieFilename("intro", kIntroStack)); break; case 7: if (!_vm->_video->isVideoPlaying()) |