diff options
author | Alyssa Milburn | 2011-11-22 14:57:25 +0100 |
---|---|---|
committer | Alyssa Milburn | 2011-11-22 14:57:25 +0100 |
commit | 0599145ecf92aeabf5bd4221a91761237f970323 (patch) | |
tree | 9b537c4f80f209124521db249c18037e0fe60c19 | |
parent | 9abc601e53a63e9df102b4508b1aa06cd62d4916 (diff) | |
download | scummvm-rg350-0599145ecf92aeabf5bd4221a91761237f970323.tar.gz scummvm-rg350-0599145ecf92aeabf5bd4221a91761237f970323.tar.bz2 scummvm-rg350-0599145ecf92aeabf5bd4221a91761237f970323.zip |
SKY: Map the floppy intro track.
-rw-r--r-- | engines/sky/music/musicbase.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/sky/music/musicbase.cpp b/engines/sky/music/musicbase.cpp index b388afdb13..c4e5ba4bd0 100644 --- a/engines/sky/music/musicbase.cpp +++ b/engines/sky/music/musicbase.cpp @@ -117,6 +117,10 @@ void MusicBase::loadNewMusic() { } else if (section == 5 && song == 6) { section = 4; song = 4; + } else if (section == 0 && song == 1) { + // floppy intro + section = 5; + song = 3; } Common::String trackName = Common::String::format("music_%d%02d", section, song); Audio::SeekableAudioStream *stream = Audio::SeekableAudioStream::openStreamFile(trackName); |