mirror of
https://github.com/libretro/RetroArch
synced 2025-03-02 19:13:34 +00:00
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…
x
Reference in New Issue
Block a user