mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-24 21:11:39 +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)
|
||||
{
|
||||
mus_playing.loop = looping;
|
||||
mus_playing.name = "";
|
||||
mus_playing.name = musicname;
|
||||
mus_playing.baseorder = order;
|
||||
LastSong = musicname;
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue