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:
parent
2581cf4909
commit
44fa025d8f
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue