Fix check_volume

This commit is contained in:
twinaphex 2014-08-29 15:06:32 +02:00 committed by Higor Eurípedes
parent 21bdf835d9
commit 2010c77c03

View File

@ -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)