Fix check_volume
This commit is contained in:
parent
21bdf835d9
commit
2010c77c03
|
@ -2760,7 +2760,7 @@ static void check_volume(void)
|
|||
bool pressed_up = input_key_pressed_func(RARCH_VOLUME_UP);
|
||||
bool pressed_down = input_key_pressed_func(RARCH_VOLUME_DOWN);
|
||||
|
||||
if (!g_extern.audio_active || !pressed_up || !pressed_down)
|
||||
if (!pressed_up && !pressed_down)
|
||||
return;
|
||||
|
||||
if (pressed_up)
|
||||
|
|
Loading…
Reference in New Issue