diff options
| author | Kevin Ferrare <kevin@rockbox.org> | 2006-07-02 12:28:27 +0000 |
|---|---|---|
| committer | Kevin Ferrare <kevin@rockbox.org> | 2006-07-02 12:28:27 +0000 |
| commit | f77ac7a6a7e19aa20bdeb10bd006ad1a8c147f76 (patch) | |
| tree | e3d2b4912b5e810ec63f109bc112b1d05972d0e3 /apps/menu.c | |
| parent | 31c7a453e1b852c48a9429be3ad23d4e85a2945f (diff) | |
| download | rockbox-f77ac7a6a7e19aa20bdeb10bd006ad1a8c147f76.zip rockbox-f77ac7a6a7e19aa20bdeb10bd006ad1a8c147f76.tar.gz rockbox-f77ac7a6a7e19aa20bdeb10bd006ad1a8c147f76.tar.bz2 rockbox-f77ac7a6a7e19aa20bdeb10bd006ad1a8c147f76.tar.xz | |
added support remote support for the id3 infos screen (had to slightly change the list engine to use it here as well), corrected a mistake in the french translation
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10175 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/menu.c')
| -rw-r--r-- | apps/menu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/menu.c b/apps/menu.c index 26df94b..f67c063 100644 --- a/apps/menu.c +++ b/apps/menu.c @@ -96,7 +96,7 @@ int menu_init(const struct menu_item* mitems, int count, int (*callback)(int, in return -1; menus[menu].items = (struct menu_item*)mitems; /* de-const */ gui_synclist_init(&(menus[menu].synclist), - &menu_get_itemname, &menus[menu]); + &menu_get_itemname, &menus[menu], false, 1); gui_synclist_set_icon_callback(&(menus[menu].synclist), NULL); gui_synclist_set_nb_items(&(menus[menu].synclist), count); menus[menu].callback = callback; |