1
0
Fork 0
forked from len0rd/rockbox

Fix FS#9391 - playback engine gets confused by multiple simultaneous button presses

Change-Id: Ie08f9dabc814adfe92c382d2e770808839cd6dd2
This commit is contained in:
Jonathan Gordon 2012-02-07 22:06:09 +11:00
parent 40ecdf6811
commit a2f28452e1

View file

@ -429,10 +429,10 @@ bool ffwd_rew(int button)
#ifdef HAVE_TOUCHSCREEN #ifdef HAVE_TOUCHSCREEN
if (button == ACTION_TOUCHSCREEN) if (button == ACTION_TOUCHSCREEN)
button = skintouch_to_wps(skin_get_gwps(WPS, SCREEN_MAIN)->data); button = skintouch_to_wps(skin_get_gwps(WPS, SCREEN_MAIN)->data);
#endif
if (button != ACTION_WPS_SEEKFWD && if (button != ACTION_WPS_SEEKFWD &&
button != ACTION_WPS_SEEKBACK) button != ACTION_WPS_SEEKBACK)
button = ACTION_WPS_STOPSEEK; button = ACTION_WPS_STOPSEEK;
#endif
} }
} }
return usb; return usb;