mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-16 06:39:17 +00:00
parent
afd8743465
commit
4f8cf19292
@ -469,6 +469,7 @@ void KyraEngine::snd_playWanderScoreViaMap(int command, int restart) {
|
||||
// XXX
|
||||
//}
|
||||
|
||||
if (_flags.platform == Common::kPlatformPC) {
|
||||
assert(command*2+1 < _trackMapSize);
|
||||
if (_curMusicTheme != _trackMap[command*2]) {
|
||||
if (_trackMap[command*2] != -1 && _trackMap[command*2] != -2)
|
||||
@ -483,6 +484,17 @@ void KyraEngine::snd_playWanderScoreViaMap(int command, int restart) {
|
||||
} else {
|
||||
_sound->beginFadeOut();
|
||||
}
|
||||
} else if (_flags.platform == Common::kPlatformFMTowns || _flags.platform == Common::kPlatformPC98) {
|
||||
if (command == -1) {
|
||||
_sound->haltTrack();
|
||||
} else {
|
||||
assert(command*2+1 < _trackMapSize);
|
||||
if (_trackMap[command*2] != -2 && command != _lastMusicCommand) {
|
||||
_sound->haltTrack();
|
||||
_sound->playTrack(command);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
_lastMusicCommand = command;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user