diff options
author | Linus Nielsen Feltzing <linus@haxx.se> | 2004-03-16 13:44:56 +0000 |
---|---|---|
committer | Linus Nielsen Feltzing <linus@haxx.se> | 2004-03-16 13:44:56 +0000 |
commit | 77936e6ec5c2d71f605df855ed24677c307b1bc7 (patch) | |
tree | f58c287f2a9f575c764b026116e32787c6c5bc0e /apps/bookmark.c | |
parent | ce0878bd40ea07d126181d1827a235f7c3ee1b00 (diff) |
First shot at a nice little button bar at the bottom of the recorder LCD. Enable Button Bar in the Display settings. Only the dir browser uses it at the moment.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4391 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/bookmark.c')
-rw-r--r-- | apps/bookmark.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/bookmark.c b/apps/bookmark.c index e832165b3c..646be3b1cd 100644 --- a/apps/bookmark.c +++ b/apps/bookmark.c @@ -92,13 +92,14 @@ bool bookmark_menu(void) int m; bool result; - struct menu_items items[] = { + struct menu_item items[] = { { STR(LANG_BOOKMARK_MENU_CREATE), bookmark_create_menu}, { STR(LANG_BOOKMARK_MENU_LIST), bookmark_load_menu}, { STR(LANG_BOOKMARK_MENU_RECENT_BOOKMARKS), bookmark_mrb_load}, }; - m=menu_init( items, sizeof items / sizeof(struct menu_items), NULL ); + m=menu_init( items, sizeof items / sizeof(struct menu_item), NULL, + NULL, NULL, NULL); #ifdef HAVE_LCD_CHARCELLS status_set_param(true); |