From ef63e47cbf5f6995d079526f50a189d1f563cb8b Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sat, 14 Mar 2020 18:14:50 +0100 Subject: [PATCH] - fixed per-level music in RR. --- source/rr/src/sounds.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/rr/src/sounds.cpp b/source/rr/src/sounds.cpp index 6bd65d537..4478423cb 100644 --- a/source/rr/src/sounds.cpp +++ b/source/rr/src/sounds.cpp @@ -568,8 +568,8 @@ static void S_SetMusicIndex(unsigned int m) void S_PlayLevelMusicOrNothing(unsigned int m) { - if (RR && mus_redbook && !cd_disabled) return; auto& mr = m == USERMAPMUSICFAKESLOT ? userMapRecord : mapList[m]; + if (RR && mr.music.IsEmpty() && mus_redbook && !cd_disabled) return; Mus_Play(mr.labelName, mr.music, true); S_SetMusicIndex(m); }