From 616971c71eaee14cc9e16fe105d34c202babbf7c Mon Sep 17 00:00:00 2001 From: Jonathan Gordon Date: Sun, 21 Oct 2007 06:42:52 +0000 Subject: 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 --- apps/gui/list.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps/gui/list.c') diff --git a/apps/gui/list.c b/apps/gui/list.c index cc66e25..6727f9b 100644 --- a/apps/gui/list.c +++ b/apps/gui/list.c @@ -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; -- cgit v1.1