mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-26 12:01:47 +00:00
Sound menu toggle fix: unnecessary if condition
This commit is contained in:
parent
b7c8f7fab7
commit
b767a0bfd1
1 changed files with 0 additions and 2 deletions
|
|
@ -9473,7 +9473,6 @@ static void M_ToggleDigital(INT32 choice)
|
||||||
{
|
{
|
||||||
digital_disabled = false;
|
digital_disabled = false;
|
||||||
I_InitMusic();
|
I_InitMusic();
|
||||||
if (digital_disabled) return;
|
|
||||||
S_StopMusic();
|
S_StopMusic();
|
||||||
if (Playing())
|
if (Playing())
|
||||||
P_RestoreMusic(&players[consoleplayer]);
|
P_RestoreMusic(&players[consoleplayer]);
|
||||||
|
|
@ -9541,7 +9540,6 @@ static void M_ToggleMIDI(INT32 choice)
|
||||||
{
|
{
|
||||||
midi_disabled = false;
|
midi_disabled = false;
|
||||||
I_InitMusic();
|
I_InitMusic();
|
||||||
if (midi_disabled) return;
|
|
||||||
if (Playing())
|
if (Playing())
|
||||||
P_RestoreMusic(&players[consoleplayer]);
|
P_RestoreMusic(&players[consoleplayer]);
|
||||||
else
|
else
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue