SKY: Map the floppy intro track.

This commit is contained in:
Alyssa Milburn 2011-11-22 14:57:25 +01:00 committed by Filippos Karapetis
parent 382a19b29b
commit 0627b0b36a

View file

@ -117,6 +117,10 @@ void MusicBase::loadNewMusic() {
} else if (section == 5 && song == 6) { } else if (section == 5 && song == 6) {
section = 4; section = 4;
song = 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); Common::String trackName = Common::String::format("music_%d%02d", section, song);
Audio::SeekableAudioStream *stream = Audio::SeekableAudioStream::openStreamFile(trackName); Audio::SeekableAudioStream *stream = Audio::SeekableAudioStream::openStreamFile(trackName);