forked from len0rd/rockbox
Move the 'manage settings' option onto the main menu
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7011 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
febd9750f1
commit
d0ec0cec10
3 changed files with 6 additions and 3 deletions
|
@ -368,7 +368,7 @@ bool main_menu(void)
|
|||
int i = 0;
|
||||
|
||||
/* main menu */
|
||||
struct menu_item items[9];
|
||||
struct menu_item items[10];
|
||||
|
||||
items[i].desc = ID2P(LANG_BOOKMARK_MENU_RECENT_BOOKMARKS);
|
||||
items[i++].function = bookmark_mrb_load;
|
||||
|
@ -379,6 +379,9 @@ bool main_menu(void)
|
|||
items[i].desc = ID2P(LANG_GENERAL_SETTINGS);
|
||||
items[i++].function = settings_menu;
|
||||
|
||||
items[i].desc = ID2P(LANG_MANAGE_MENU);
|
||||
items[i++].function = manage_settings_menu;
|
||||
|
||||
#ifdef CONFIG_TUNER
|
||||
if(radio_hardware_present()) {
|
||||
items[i].desc = ID2P(LANG_FM_RADIO);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue