From 042c0e9796051532d5d38ad7644e784ca0903761 Mon Sep 17 00:00:00 2001 From: hendricks266 Date: Sun, 25 Feb 2018 01:18:32 +0000 Subject: [PATCH] Fix the interaction between starttrack and toggling music off. git-svn-id: https://svn.eduke32.com/eduke32@6693 1a8010ca-5511-0410-912e-c29ae57300e0 --- source/duke3d/src/sounds.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/source/duke3d/src/sounds.cpp b/source/duke3d/src/sounds.cpp index 5a03560ca..de3939638 100644 --- a/source/duke3d/src/sounds.cpp +++ b/source/duke3d/src/sounds.cpp @@ -186,7 +186,10 @@ void S_MenuSound(void) static int32_t S_PlayMusic(const char *fn) { - if (!ud.config.MusicToggle || fn == NULL) + if (!ud.config.MusicToggle) + return 0; + + if (fn == NULL) return 1; int32_t fp = S_OpenAudio(fn, 0, 1);