forked from len0rd/rockbox
a few more button/statusbar fixes...
* hopefully fix the last of the plugins which dont handle the enw SYS event. * fix FS#9750 - WPS's which dont specify (or force the wps on) wernt showing the statusbar at all * lamp, battery_bench, *_flash button handling fixes * plugins using the core menu code will again show the statusbar git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19656 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
3681ff197d
commit
4b472de39b
8 changed files with 26 additions and 16 deletions
|
@ -592,7 +592,7 @@ int WaitForButton(void)
|
|||
do
|
||||
{
|
||||
button = rb->button_get(true);
|
||||
} while (button & BUTTON_REL);
|
||||
} while (IS_SYSEVENT(button) || (button & BUTTON_REL));
|
||||
|
||||
return button;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue