From ba9f29531eaa8e0df723428bd5ef5afea08ac6cc Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sat, 9 Jun 2012 14:41:18 +0000 Subject: [PATCH] - fixed: The music name wasn't recorded when a song was started with music volume set to 0. SVN r3683 (trunk) --- src/s_sound.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/s_sound.cpp b/src/s_sound.cpp index c2e3b0f76..a8ee73dd8 100644 --- a/src/s_sound.cpp +++ b/src/s_sound.cpp @@ -2489,7 +2489,7 @@ bool S_ChangeMusic (const char *musicname, int order, bool looping, bool force) if (snd_musicvolume <= 0) { mus_playing.loop = looping; - mus_playing.name = ""; + mus_playing.name = musicname; mus_playing.baseorder = order; LastSong = musicname; return true;