summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2011-09-01 11:29:55 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2011-09-01 11:29:55 +0000
commitd67d6a8462e02770d81d6a01f3193d0a2050fbe2 (patch)
tree7e09425f151f6b85a67ae16ae6c96aa5757bffd0
parent6d3a6f71d1f8bce9ab5e7b90ceab6a17271174b8 (diff)
downloadrockbox-d67d6a8462e02770d81d6a01f3193d0a2050fbe2.tar.gz
rockbox-d67d6a8462e02770d81d6a01f3193d0a2050fbe2.zip
Fix the timeout so the selected item will scroll
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30402 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/debug_menu.c2
1 files changed, 1 insertions, 1 deletions
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)
450 simplelist_info_init(&info, "mem allocs", core_get_num_blocks(), NULL); 450 simplelist_info_init(&info, "mem allocs", core_get_num_blocks(), NULL);
451 info.get_name = bf_getname; 451 info.get_name = bf_getname;
452 info.action_callback = bf_action_cb; 452 info.action_callback = bf_action_cb;
453 info.timeout = HZ/2; 453 info.timeout = TIMEOUT_BLOCK;
454 return simplelist_show_list(&info); 454 return simplelist_show_list(&info);
455} 455}
456 456