aboutsummaryrefslogtreecommitdiff
path: root/engines/sherlock/tattoo/tattoo_talk.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2015-07-04 14:33:13 -0400
committerPaul Gilbert2015-07-04 14:33:13 -0400
commit88002ef19fbb5dd1f5465b6e282415e4ca3a138b (patch)
treea6c541206d66a7b6cfe8b70cb730a354cb334759 /engines/sherlock/tattoo/tattoo_talk.cpp
parent4025c20ea474d7978eb1c7267573f344a9b8830a (diff)
downloadscummvm-rg350-88002ef19fbb5dd1f5465b6e282415e4ca3a138b.tar.gz
scummvm-rg350-88002ef19fbb5dd1f5465b6e282415e4ca3a138b.tar.bz2
scummvm-rg350-88002ef19fbb5dd1f5465b6e282415e4ca3a138b.zip
SHERLOCK: Make playMusic a private method of Music
Diffstat (limited to 'engines/sherlock/tattoo/tattoo_talk.cpp')
-rw-r--r--engines/sherlock/tattoo/tattoo_talk.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sherlock/tattoo/tattoo_talk.cpp b/engines/sherlock/tattoo/tattoo_talk.cpp
index 3ad64a1757..e61873ced9 100644
--- a/engines/sherlock/tattoo/tattoo_talk.cpp
+++ b/engines/sherlock/tattoo/tattoo_talk.cpp
@@ -383,7 +383,7 @@ OpcodeReturn TattooTalk::cmdPlaySong(const byte *&str) {
str += 7;
// Play the song
- music.playMusic(music._currentSongName);
+ music.loadSong(music._currentSongName);
// Copy the old song name to _nextSongName so that when the new song is finished, the old song will restart
music._nextSongName = currentSong;