summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2007-04-05 05:18:47 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2007-04-05 05:18:47 +0000
commit78585318b5170f642cabe012e72c955ca6d9ccc8 (patch)
treedec3aedf00c8680e8d4c02e930104ede4587b7c7 /apps
parentd88db1fc12ef3aeaf7539c90ff1ea65646e7315f (diff)
downloadrockbox-78585318b5170f642cabe012e72c955ca6d9ccc8.tar.gz
rockbox-78585318b5170f642cabe012e72c955ca6d9ccc8.zip
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
Diffstat (limited to 'apps')
-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 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,
98 gui_synclist_init(&lists, dbg_getname, NULL, false, selection_size); 98 gui_synclist_init(&lists, dbg_getname, NULL, false, selection_size);
99 gui_synclist_set_title(&lists, title, NOICON); 99 gui_synclist_set_title(&lists, title, NOICON);
100 gui_synclist_set_icon_callback(&lists, NULL); 100 gui_synclist_set_icon_callback(&lists, NULL);
101 gui_synclist_set_nb_items(&lists, count); 101 gui_synclist_set_nb_items(&lists, count*selection_size);
102 action_signalscreenchange(); 102 action_signalscreenchange();
103 gui_synclist_draw(&lists); 103 gui_synclist_draw(&lists);
104 while(1) 104 while(1)