From 32f3d0051483bfb63214ac88f37a532f4c4df992 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 13 Jun 2010 10:24:56 +0000 Subject: [PATCH] - fixed: Stopping music did not clear the variable used to restart the last played song. SVN r2369 (trunk) --- src/s_sound.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/s_sound.cpp b/src/s_sound.cpp index b7a63e51b..c31e2f7ac 100644 --- a/src/s_sound.cpp +++ b/src/s_sound.cpp @@ -2328,6 +2328,7 @@ bool S_ChangeMusic (const char *musicname, int order, bool looping, bool force) // Don't choke if the map doesn't have a song attached S_StopMusic (true); mus_playing.name = ""; + LastSong = ""; return true; }