From d67d6a8462e02770d81d6a01f3193d0a2050fbe2 Mon Sep 17 00:00:00 2001 From: Jonathan Gordon Date: Thu, 1 Sep 2011 11:29:55 +0000 Subject: [PATCH] Fix the timeout so the selected item will scroll git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30402 a1c6a512-1295-4272-9138-f99709370657 --- apps/debug_menu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/debug_menu.c b/apps/debug_menu.c index 6375094225..445220626b 100644 --- a/apps/debug_menu.c +++ b/apps/debug_menu.c @@ -450,7 +450,7 @@ static bool dbg_buflib_allocs(void) simplelist_info_init(&info, "mem allocs", core_get_num_blocks(), NULL); info.get_name = bf_getname; info.action_callback = bf_action_cb; - info.timeout = HZ/2; + info.timeout = TIMEOUT_BLOCK; return simplelist_show_list(&info); } -- 2.11.4.GIT