diff options
author | Norbert Lange | 2009-07-19 01:14:51 +0000 |
---|---|---|
committer | Norbert Lange | 2009-07-19 01:14:51 +0000 |
commit | 31b6767666c3ed5f3ef0660218941d26eccf2446 (patch) | |
tree | 2e6903ae597dea70f30039f2df2f6f6f36dcc2d7 /engines/kyra | |
parent | 396d6c86aa5128449d9e99020b28ace2a0492bdd (diff) | |
download | scummvm-rg350-31b6767666c3ed5f3ef0660218941d26eccf2446.tar.gz scummvm-rg350-31b6767666c3ed5f3ef0660218941d26eccf2446.tar.bz2 scummvm-rg350-31b6767666c3ed5f3ef0660218941d26eccf2446.zip |
fixed: intro-music started twice because it was hardcoded in the engine
removed verbose debug-output from maxtrax
svn-id: r42604
Diffstat (limited to 'engines/kyra')
-rw-r--r-- | engines/kyra/sequences_lok.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/kyra/sequences_lok.cpp b/engines/kyra/sequences_lok.cpp index 0279831c9d..b5ae7a50ec 100644 --- a/engines/kyra/sequences_lok.cpp +++ b/engines/kyra/sequences_lok.cpp @@ -109,7 +109,7 @@ void KyraEngine_LoK::seq_intro() { _seq->setCopyViewOffs(true); _screen->setFont(Screen::FID_8_FNT); - if (_flags.platform != Common::kPlatformFMTowns && _flags.platform != Common::kPlatformPC98) + if (_flags.platform != Common::kPlatformFMTowns && _flags.platform != Common::kPlatformPC98 && _flags.platform != Common::kPlatformAmiga) snd_playTheme(0, 2); _text->setTalkCoords(144); |