From 9bd5e07d90ad5693d96a557d66c919cf3097d34b Mon Sep 17 00:00:00 2001 From: Florian Kagerer Date: Sat, 14 Nov 2009 22:51:35 +0000 Subject: KYRA: added kyra 1 pc98 static data to kyra.dat (intro forest sequence is still broken) svn-id: r45906 --- engines/kyra/sound_lok.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engines/kyra/sound_lok.cpp') diff --git a/engines/kyra/sound_lok.cpp b/engines/kyra/sound_lok.cpp index 8399e0cc51..3eeddf1ce3 100644 --- a/engines/kyra/sound_lok.cpp +++ b/engines/kyra/sound_lok.cpp @@ -36,7 +36,7 @@ void KyraEngine_LoK::snd_playSoundEffect(int track, int volume) { track -= 16; } - if ((_flags.platform == Common::kPlatformFMTowns || _flags.platform == Common::kPlatformPC98) && track == 49) { + if (_flags.platform == Common::kPlatformFMTowns && track == 49) { snd_playWanderScoreViaMap(56, 1); return; } @@ -64,7 +64,7 @@ void KyraEngine_LoK::snd_playWanderScoreViaMap(int command, int restart) { } else if (_flags.platform == Common::kPlatformPC98) { if (command == 1) { _sound->beginFadeOut(); - } else if (command >= 2) { + } else if (command >= 2 && command < 53 || command == 55) { if (_lastMusicCommand != command) _sound->playTrack(command); } else { -- cgit v1.2.3