diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2012-08-14 12:12:15 +1000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2012-08-14 12:12:15 +1000 |
| commit | 70eb3e6a563758a80ec894c009ca51bd79945043 (patch) | |
| tree | 88f291ce485f961cb7705dfa597ec62e74884a21 /apps/action.c | |
| parent | bd6e6ed40385c5d5f357a39909ae6a5db60f7ce9 (diff) | |
| download | rockbox-70eb3e6a563758a80ec894c009ca51bd79945043.zip rockbox-70eb3e6a563758a80ec894c009ca51bd79945043.tar.gz rockbox-70eb3e6a563758a80ec894c009ca51bd79945043.tar.bz2 rockbox-70eb3e6a563758a80ec894c009ca51bd79945043.tar.xz | |
Revert "fix erroneous button read in yesno screen and missed buttons in action.c."
This reverts commit 15775c8badac65ad9d7477a1706c019703c15b47.
Diffstat (limited to 'apps/action.c')
| -rw-r--r-- | apps/action.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/apps/action.c b/apps/action.c index 3c130e3..5ebcbf7 100644 --- a/apps/action.c +++ b/apps/action.c @@ -232,13 +232,7 @@ static int get_action_worker(int context, int timeout, /* Data from sys events can be pulled with button_get_data * multimedia button presses don't go through the action system */ if (button == BUTTON_NONE || button & (SYS_EVENT|BUTTON_MULTIMEDIA)) - { - /* no button pressed so no point in waiting for release */ - if (button == BUTTON_NONE) - wait_for_release = false; return button; - } - /* the special redraw button should result in a screen refresh */ if (button == BUTTON_REDRAW) return ACTION_REDRAW; |