From b73caf745fc764e8fa50ff2306706a1de314a8cd Mon Sep 17 00:00:00 2001 From: Linus Nielsen Feltzing Date: Mon, 26 Jul 2004 07:39:57 +0000 Subject: Ignore repeat button events in the shutdown confirmation screen git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4949 a1c6a512-1295-4272-9138-f99709370657 --- apps/screens.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'apps/screens.c') diff --git a/apps/screens.c b/apps/screens.c index ff39258424..4d48372890 100644 --- a/apps/screens.c +++ b/apps/screens.c @@ -1115,8 +1115,10 @@ bool shutdown_screen(void) /* Return if any other button was pushed, or if there was a timeout. We ignore RELEASE events, since we may have been called by a button down event, and the user might - not have released the button yet. */ - if(!(button & BUTTON_REL)) + not have released the button yet. + We also ignore REPEAT events, since we don't want to + remove the splash when the user holds OFF to shut down. */ + if(!(button & (BUTTON_REL | BUTTON_REPEAT))) done = true; break; } -- cgit v1.2.3