From fa924f1b0564ecec8a7b48bcd2b2a88bcd0eedbd Mon Sep 17 00:00:00 2001 From: Jens Arnold Date: Tue, 17 May 2005 17:38:07 +0000 Subject: [PATCH] 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 --- apps/menu.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/apps/menu.c b/apps/menu.c index 68b9d0dbe7..d35db0e23c 100644 --- a/apps/menu.c +++ b/apps/menu.c @@ -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);