aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorAlyssa Milburn2012-02-07 13:20:50 +0100
committerAlyssa Milburn2012-02-07 13:20:50 +0100
commitb9a93f354b5f783be8e4c3aaf673b7105b8809a7 (patch)
tree815d6312c05d54227377d7b466656b58067756cb /engines
parent2855735e1f8e3daee2f360eb12b79557a9d3326e (diff)
downloadscummvm-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.cpp4
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);