aboutsummaryrefslogtreecommitdiff
path: root/engines/sherlock
diff options
context:
space:
mode:
authorPaul Gilbert2015-10-17 14:46:21 -0400
committerPaul Gilbert2015-10-17 14:46:21 -0400
commit65ce5a89c96594847646b16fa0bc68329f1f16f1 (patch)
tree3fc577e1e1eacbd9b5d68c2e65522c38964612f8 /engines/sherlock
parentc583294edeee8470c0ed965d8e7b357073f8560b (diff)
downloadscummvm-rg350-65ce5a89c96594847646b16fa0bc68329f1f16f1.tar.gz
scummvm-rg350-65ce5a89c96594847646b16fa0bc68329f1f16f1.tar.bz2
scummvm-rg350-65ce5a89c96594847646b16fa0bc68329f1f16f1.zip
SHERLOCK: RT: Fix incorrect music file after intro ends
Diffstat (limited to 'engines/sherlock')
-rw-r--r--engines/sherlock/tattoo/tattoo_talk.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/sherlock/tattoo/tattoo_talk.cpp b/engines/sherlock/tattoo/tattoo_talk.cpp
index a4ceca042b..a5ada7b63e 100644
--- a/engines/sherlock/tattoo/tattoo_talk.cpp
+++ b/engines/sherlock/tattoo/tattoo_talk.cpp
@@ -341,6 +341,10 @@ OpcodeReturn TattooTalk::cmdNextSong(const byte *&str) {
music._nextSongName += str[idx];
str += 7;
+ // WORKAROUND: Original game set wrong music name at the end of the introduction sequence
+ if (_scriptName == "prol80p" && music._nextSongName == "default")
+ music._nextSongName = "01cue90";
+
return RET_SUCCESS;
}