diff options
author | Alyssa Milburn | 2012-02-07 13:20:50 +0100 |
---|---|---|
committer | Alyssa Milburn | 2012-02-07 13:20:50 +0100 |
commit | b9a93f354b5f783be8e4c3aaf673b7105b8809a7 (patch) | |
tree | 815d6312c05d54227377d7b466656b58067756cb /engines | |
parent | 2855735e1f8e3daee2f360eb12b79557a9d3326e (diff) | |
download | scummvm-rg350-b9a93f354b5f783be8e4c3aaf673b7105b8809a7.tar.gz scummvm-rg350-b9a93f354b5f783be8e4c3aaf673b7105b8809a7.tar.bz2 scummvm-rg350-b9a93f354b5f783be8e4c3aaf673b7105b8809a7.zip |
Revert "SKY: Map the floppy intro track."
This reverts commit 0599145ecf92aeabf5bd4221a91761237f970323.
This mapping was incorrect, 503 is the outro.
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sky/music/musicbase.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/engines/sky/music/musicbase.cpp b/engines/sky/music/musicbase.cpp index c4e5ba4bd0..b388afdb13 100644 --- a/engines/sky/music/musicbase.cpp +++ b/engines/sky/music/musicbase.cpp @@ -117,10 +117,6 @@ 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); |