forked from len0rd/rockbox
remove the seelection_size param from the info init call to hopefully decrease the bin size a bit
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15237 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
5eac0108f9
commit
616971c71e
4 changed files with 12 additions and 10 deletions
|
@ -1209,11 +1209,11 @@ bool simplelist_show_list(struct simplelist_info *info)
|
|||
}
|
||||
|
||||
void simplelist_info_init(struct simplelist_info *info, char* title,
|
||||
int selection_size, int count, void* data)
|
||||
int count, void* data)
|
||||
{
|
||||
info->title = title;
|
||||
info->count = count;
|
||||
info->selection_size = selection_size;
|
||||
info->selection_size = 1;
|
||||
info->hide_selection = false;
|
||||
info->scroll_all = false;
|
||||
info->action_callback = NULL;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue