1
0
Fork 0
forked from len0rd/rockbox

Don't swallow button events. It's unnecessary and maybe even confusing.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6486 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jens Arnold 2005-05-17 17:38:07 +00:00
parent 84c0d16da4
commit fa924f1b05

View file

@ -301,10 +301,6 @@ int menu_show(int m)
/* Put the cursor on the first line and draw the menu */
put_cursor(m, menus[m].cursor);
/* wait until all keys are released */
while (button_get(false) != BUTTON_NONE)
yield();
while (!exit) {
key = button_get_w_tmo(HZ/2);