From 65ce5a89c96594847646b16fa0bc68329f1f16f1 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Sat, 17 Oct 2015 14:46:21 -0400 Subject: SHERLOCK: RT: Fix incorrect music file after intro ends --- engines/sherlock/tattoo/tattoo_talk.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'engines/sherlock/tattoo') 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; } -- cgit v1.2.3