1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Jonathan Gordon 2007-04-05 05:18:47 +00:00
parent d88db1fc12
commit 78585318b5

View file

@ -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)