mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-14 02:27:39 -04:00
Fixed wps usb bug. Before rockbox switched not to usb mode when cable was
pluged. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1870 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
35c0480d60
commit
c6c848e91b
1 changed files with 1 additions and 1 deletions
|
@ -488,7 +488,7 @@ int wps_show(void)
|
|||
if (button && ignore_keyup)
|
||||
{
|
||||
ignore_keyup = false;
|
||||
if (button & BUTTON_REL)
|
||||
if (button & BUTTON_REL & !SYS_USB_CONNECTED)
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue