1
0
Fork 0
forked from len0rd/rockbox

Fix the timeout so the selected item will scroll

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30402 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jonathan Gordon 2011-09-01 11:29:55 +00:00
parent 6d3a6f71d1
commit d67d6a8462

View file

@ -450,7 +450,7 @@ static bool dbg_buflib_allocs(void)
simplelist_info_init(&info, "mem allocs", core_get_num_blocks(), NULL); simplelist_info_init(&info, "mem allocs", core_get_num_blocks(), NULL);
info.get_name = bf_getname; info.get_name = bf_getname;
info.action_callback = bf_action_cb; info.action_callback = bf_action_cb;
info.timeout = HZ/2; info.timeout = TIMEOUT_BLOCK;
return simplelist_show_list(&info); return simplelist_show_list(&info);
} }