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:
parent
d88db1fc12
commit
78585318b5
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue