diff options
author | Paul Gilbert | 2015-08-29 07:41:59 -0400 |
---|---|---|
committer | Paul Gilbert | 2015-08-29 07:41:59 -0400 |
commit | 2ab0b71fd04d817740826c28ce29b9945176b684 (patch) | |
tree | 9ec83636f2c7388f94884f6d2770891857b252ce | |
parent | 42f60565fd89511d7ee08a08593505e3c543b938 (diff) | |
download | scummvm-rg350-2ab0b71fd04d817740826c28ce29b9945176b684.tar.gz scummvm-rg350-2ab0b71fd04d817740826c28ce29b9945176b684.tar.bz2 scummvm-rg350-2ab0b71fd04d817740826c28ce29b9945176b684.zip |
SHERLOCK: RT: Fix playing music when displaying the map
-rw-r--r-- | engines/sherlock/tattoo/tattoo_map.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/engines/sherlock/tattoo/tattoo_map.cpp b/engines/sherlock/tattoo/tattoo_map.cpp index beafa939e8..4bd85bd5c0 100644 --- a/engines/sherlock/tattoo/tattoo_map.cpp +++ b/engines/sherlock/tattoo/tattoo_map.cpp @@ -69,7 +69,7 @@ int TattooMap::show() { } } - if (music._midiOption) { + if (music._musicOn) { // See if Holmes or Watson is the active character Common::String song; if (_vm->readFlags(FLAG_PLAYER_IS_HOLMES)) @@ -81,8 +81,7 @@ int TattooMap::show() { song = "Cue7"; if (music.loadSong(song)) { - if (music._musicOn) - music.startSong(); + music.startSong(); } } |