diff options
| author | Bertrik Sikken <bertrik@sikken.nl> | 2010-01-05 21:15:20 +0000 |
|---|---|---|
| committer | Bertrik Sikken <bertrik@sikken.nl> | 2010-01-05 21:15:20 +0000 |
| commit | 44fa025d8f252b468f25d598976c780262e46cb2 (patch) | |
| tree | d81ef0df92caf5650c9fbf5c1ab27f84d914ee1e | |
| parent | 2581cf4909f51749255c6f09282791cac08a99fe (diff) | |
| download | rockbox-44fa025d8f252b468f25d598976c780262e46cb2.zip rockbox-44fa025d8f252b468f25d598976c780262e46cb2.tar.gz rockbox-44fa025d8f252b468f25d598976c780262e46cb2.tar.bz2 rockbox-44fa025d8f252b468f25d598976c780262e46cb2.tar.xz | |
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
| -rw-r--r-- | apps/gui/list.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gui/list.h b/apps/gui/list.h index ed61889..ef16c71 100644 --- a/apps/gui/list.h +++ b/apps/gui/list.h @@ -206,7 +206,7 @@ extern bool list_do_action(int context, int timeout, struct simplelist_info { char *title; /* title to show on the list */ 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 scroll_all; int timeout; |