From d6def79dca7ed686196b860c9b160d1d0cbf93c5 Mon Sep 17 00:00:00 2001 From: Jonathan Gordon Date: Wed, 31 Dec 2008 10:02:35 +0000 Subject: fix the yesno screen which I accidently broke with the last commites git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19624 a1c6a512-1295-4272-9138-f99709370657 --- apps/gui/yesno.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/gui/yesno.c b/apps/gui/yesno.c index 756d267..1e597f2 100644 --- a/apps/gui/yesno.c +++ b/apps/gui/yesno.c @@ -167,6 +167,9 @@ enum yesno_res gui_syncyesno_run(const struct text_message * main_message, case SYS_CHARGER_DISCONNECTED: /* ignore some SYS events that can happen */ continue; + case SYS_FOURHERTZ: /* make sure this one works as expected */ + default_event_handler(button); + break; default: if(default_event_handler(button) == SYS_USB_CONNECTED) return(YESNO_USB); -- cgit v1.1