(svn r11259) -Fix [FS#1331]: the wrong song was played in the first intro game of a single OTTD session.

pull/155/head
rubidium 17 years ago
parent 3d4bc58dc4
commit 198ea304ad

@ -174,7 +174,11 @@ void MusicLoop()
if (!msf.playing && _song_is_active) {
StopMusic();
} else if (msf.playing && !_song_is_active) {
PlayPlaylistSong();
if (_game_mode != GM_MENU) {
PlayPlaylistSong();
} else {
ResetMusic();
}
}
if (!_song_is_active) return;

Loading…
Cancel
Save