1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-24 15:09:10 +00:00

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

This commit is contained in:
rubidium
2007-10-14 19:46:00 +00:00
parent edc2a62669
commit 835a9670af

View File

@@ -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;