diff options
-rw-r--r-- | code/client/snd_openal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code/client/snd_openal.c b/code/client/snd_openal.c index 4f67f35..42ce955 100644 --- a/code/client/snd_openal.c +++ b/code/client/snd_openal.c @@ -1528,7 +1528,7 @@ void S_AL_StartBackgroundTrack( const char *intro, const char *loop ) // Stop any existing music that might be playing S_AL_StopBackgroundTrack(); - if((!intro || !*intro) && (!intro || !*intro)) + if((!intro || !*intro) && (!loop || !*loop)) return; // Allocate a musicSource |