mirror of
https://github.com/libretro/scummvm.git
synced 2025-03-02 08:19:19 +00:00
SHERLOCK: RT: Fix incorrect music file after intro ends
This commit is contained in:
parent
c583294ede
commit
65ce5a89c9
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user