1
0
Fork 0
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:
Jonathan Gordon 2007-10-21 06:42:52 +00:00
parent 5eac0108f9
commit 616971c71e
4 changed files with 12 additions and 10 deletions

View file

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