1
0
Fork 0
forked from len0rd/rockbox

Players use the MENU button, not F1.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3587 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Björn Stenberg 2003-04-23 11:00:39 +00:00
parent 28cce684a3
commit 10fd7b6c3b

View file

@ -809,7 +809,11 @@ int wps_show(void)
/* ignore non-remote buttons when keys are locked */ /* ignore non-remote buttons when keys are locked */
if (keys_locked && if (keys_locked &&
#ifdef HAVE_RECORDER_KEYPAD
! ((button & BUTTON_F1) || ! ((button & BUTTON_F1) ||
#else
! ((button & BUTTON_MENU) ||
#endif
(button == SYS_USB_CONNECTED) || (button == SYS_USB_CONNECTED) ||
(button & BUTTON_REMOTE))) (button & BUTTON_REMOTE)))
continue; continue;