From ab784649cd95cc5c7fc0d81bb6ef85b762e237b5 Mon Sep 17 00:00:00 2001 From: Steve Bavin Date: Fri, 26 Oct 2007 18:04:42 +0000 Subject: Don't lock up simulators when lists are used with TIMEOUT_NOBLOCK. Fixes FS#8030. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15318 a1c6a512-1295-4272-9138-f99709370657 --- apps/gui/list.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'apps') diff --git a/apps/gui/list.c b/apps/gui/list.c index 64551055c3..4d19bbdf96 100644 --- a/apps/gui/list.c +++ b/apps/gui/list.c @@ -1285,6 +1285,11 @@ bool simplelist_show_list(struct simplelist_info *info) gui_syncstatusbar_draw(&statusbars, true); list_do_action(CONTEXT_STD, info->timeout, &lists, &action, LIST_WRAP_UNLESS_HELD); +#ifdef SIMULATOR + /* Sim has no interrupts, so this is needed for buttons to be recognised */ + if (info->timeout == TIMEOUT_NOBLOCK) + yield(); +#endif if (info->action_callback) { action = info->action_callback(action, &lists); @@ -1303,7 +1308,6 @@ bool simplelist_show_list(struct simplelist_info *info) } else if(default_event_handler(action) == SYS_USB_CONNECTED) return true; - } talk_shutup(); return false; -- cgit v1.2.3