mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 07:12:02 +00:00
- fixed: The music name wasn't recorded when a song was started with music volume set to 0.
SVN r3683 (trunk)
This commit is contained in:
parent
18839acddb
commit
ba9f29531e
1 changed files with 1 additions and 1 deletions
|
@ -2489,7 +2489,7 @@ bool S_ChangeMusic (const char *musicname, int order, bool looping, bool force)
|
||||||
if (snd_musicvolume <= 0)
|
if (snd_musicvolume <= 0)
|
||||||
{
|
{
|
||||||
mus_playing.loop = looping;
|
mus_playing.loop = looping;
|
||||||
mus_playing.name = "";
|
mus_playing.name = musicname;
|
||||||
mus_playing.baseorder = order;
|
mus_playing.baseorder = order;
|
||||||
LastSong = musicname;
|
LastSong = musicname;
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in a new issue