mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
- RR: Do not start the "8-track player" when a map got a dedicated music track defined.
Otherwise it may become a bit annoying.
This commit is contained in:
parent
864c3c5766
commit
9945131d3a
1 changed files with 1 additions and 1 deletions
|
@ -600,7 +600,7 @@ void S_PlaySpecialMusicOrNothing(unsigned int m)
|
|||
|
||||
void S_PlayRRMusic(int newTrack)
|
||||
{
|
||||
if (!RR || !mus_redbook || cd_disabled)
|
||||
if (!RR || !mus_redbook || cd_disabled || currentLevel->music.IsNotEmpty())
|
||||
return;
|
||||
Mus_Stop();
|
||||
|
||||
|
|
Loading…
Reference in a new issue