diff options
Diffstat (limited to 'apps/plugins/iriver_flash.c')
| -rw-r--r-- | apps/plugins/iriver_flash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/iriver_flash.c b/apps/plugins/iriver_flash.c index 9f26f82..e7ae056 100644 --- a/apps/plugins/iriver_flash.c +++ b/apps/plugins/iriver_flash.c @@ -230,7 +230,7 @@ int wait_for_button(void) do { button = rb->button_get(true); - } while (button & BUTTON_REL); + } while (IS_SYSEVENT(button) || (button & BUTTON_REL)); return button; } |