diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2011-09-01 11:29:55 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2011-09-01 11:29:55 +0000 |
| commit | d67d6a8462e02770d81d6a01f3193d0a2050fbe2 (patch) | |
| tree | 7e09425f151f6b85a67ae16ae6c96aa5757bffd0 /apps/debug_menu.c | |
| parent | 6d3a6f71d1f8bce9ab5e7b90ceab6a17271174b8 (diff) | |
| download | rockbox-d67d6a8462e02770d81d6a01f3193d0a2050fbe2.zip rockbox-d67d6a8462e02770d81d6a01f3193d0a2050fbe2.tar.gz rockbox-d67d6a8462e02770d81d6a01f3193d0a2050fbe2.tar.bz2 rockbox-d67d6a8462e02770d81d6a01f3193d0a2050fbe2.tar.xz | |
Fix the timeout so the selected item will scroll
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30402 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to '')
| -rw-r--r-- | apps/debug_menu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c index 6375094..4452206 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); } |