Skip to content

Commit

Permalink
SCUMM: Remove Mac version of MI1 from special case.
Browse files Browse the repository at this point in the history
We no longer use iMuse for MI1 Mac so this never happens. The Mac
player can only play one song at a time, so it should be all right.
  • Loading branch information
Torbjörn Andersson committed Nov 14, 2012
1 parent 0dcd4ba commit b753493
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions engines/scumm/sound.cpp
Expand Up @@ -391,8 +391,7 @@ void Sound::playSound(int soundID) {
}
else {

if (_vm->_game.id == GID_MONKEY_VGA || _vm->_game.id == GID_MONKEY_EGA
|| (_vm->_game.id == GID_MONKEY && _vm->_game.platform == Common::kPlatformMacintosh)) {
if (_vm->_game.id == GID_MONKEY_VGA || _vm->_game.id == GID_MONKEY_EGA) {
// Works around the fact that in some places in MonkeyEGA/VGA,
// the music is never explicitly stopped.
// Rather it seems that starting a new music is supposed to
Expand Down

0 comments on commit b753493

Please sign in to comment.