1
0
Fork 0
forked from len0rd/rockbox

Use plain int (instead of char) for field selection_size in struct simplelist_info

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24188 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Bertrik Sikken 2010-01-05 21:15:20 +00:00
parent 2581cf4909
commit 44fa025d8f

View file

@ -206,7 +206,7 @@ extern bool list_do_action(int context, int timeout,
struct simplelist_info { struct simplelist_info {
char *title; /* title to show on the list */ char *title; /* title to show on the list */
int count; /* number of items in the list, each item is selection_size high */ int count; /* number of items in the list, each item is selection_size high */
char selection_size; /* list selection size, usually 1 */ int selection_size; /* list selection size, usually 1 */
bool hide_selection; bool hide_selection;
bool scroll_all; bool scroll_all;
int timeout; int timeout;