From 78585318b5170f642cabe012e72c955ca6d9ccc8 Mon Sep 17 00:00:00 2001 From: Jonathan Gordon Date: Thu, 5 Apr 2007 05:18:47 +0000 Subject: count was set wrong for the parititons screen. imo this is a bug in the list code, but quick fix untill a proper one git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13031 a1c6a512-1295-4272-9138-f99709370657 --- apps/debug_menu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps') diff --git a/apps/debug_menu.c b/apps/debug_menu.c index 10df252468..dff84d1eda 100644 --- a/apps/debug_menu.c +++ b/apps/debug_menu.c @@ -98,7 +98,7 @@ static bool dbg_list(char *title, int count, int selection_size, gui_synclist_init(&lists, dbg_getname, NULL, false, selection_size); gui_synclist_set_title(&lists, title, NOICON); gui_synclist_set_icon_callback(&lists, NULL); - gui_synclist_set_nb_items(&lists, count); + gui_synclist_set_nb_items(&lists, count*selection_size); action_signalscreenchange(); gui_synclist_draw(&lists); while(1) -- cgit v1.2.3