- fixed: When loading a savegame without music, stop any playing music.

This commit is contained in:
Christoph Oelckers 2020-02-25 21:15:25 +01:00
parent 9945131d3a
commit c045096393
1 changed files with 4 additions and 0 deletions

View File

@ -511,6 +511,10 @@ void S_RestartMusic ()
mus_playing.LastSong = "";
S_ChangeMusic (song, mus_playing.baseorder, mus_playing.loop, true);
}
else
{
S_StopMusic(true);
}
}
//==========================================================================