mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
Fixes a bug when you can't enable music from the sounds menu. Not sure why this line had a multiplayer-related check before rev 1574 yet.
git-svn-id: https://svn.eduke32.com/eduke32@1581 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
fb85ae604f
commit
f543a69ab8
1 changed files with 1 additions and 1 deletions
|
@ -4484,7 +4484,7 @@ cheat_for_port_credits:
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 2:
|
case 2:
|
||||||
if (ud.config.MusicDevice >= 0 && ud.config.MusicToggle)
|
if (ud.config.MusicDevice >= 0)
|
||||||
{
|
{
|
||||||
i = ud.config.MusicToggle;
|
i = ud.config.MusicToggle;
|
||||||
modval(0,1,(int32_t *)&ud.config.MusicToggle,1,probey==io);
|
modval(0,1,(int32_t *)&ud.config.MusicToggle,1,probey==io);
|
||||||
|
|
Loading…
Reference in a new issue