summaryrefslogtreecommitdiff
path: root/apps/plugins/iriver_flash.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/iriver_flash.c')
-rw-r--r--apps/plugins/iriver_flash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/iriver_flash.c b/apps/plugins/iriver_flash.c
index 9f26f82d13..e7ae056d38 100644
--- a/apps/plugins/iriver_flash.c
+++ b/apps/plugins/iriver_flash.c
@@ -230,7 +230,7 @@ int wait_for_button(void)
230 do 230 do
231 { 231 {
232 button = rb->button_get(true); 232 button = rb->button_get(true);
233 } while (button & BUTTON_REL); 233 } while (IS_SYSEVENT(button) || (button & BUTTON_REL));
234 234
235 return button; 235 return button;
236} 236}