aboutsummaryrefslogtreecommitdiff
path: root/engines/sherlock/tattoo
diff options
context:
space:
mode:
authorPaul Gilbert2015-08-29 07:41:59 -0400
committerPaul Gilbert2015-08-29 07:41:59 -0400
commit2ab0b71fd04d817740826c28ce29b9945176b684 (patch)
tree9ec83636f2c7388f94884f6d2770891857b252ce /engines/sherlock/tattoo
parent42f60565fd89511d7ee08a08593505e3c543b938 (diff)
downloadscummvm-rg350-2ab0b71fd04d817740826c28ce29b9945176b684.tar.gz
scummvm-rg350-2ab0b71fd04d817740826c28ce29b9945176b684.tar.bz2
scummvm-rg350-2ab0b71fd04d817740826c28ce29b9945176b684.zip
SHERLOCK: RT: Fix playing music when displaying the map
Diffstat (limited to 'engines/sherlock/tattoo')
-rw-r--r--engines/sherlock/tattoo/tattoo_map.cpp5
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();
}
}