diff options
author | Thomas Martitz <kugel@rockbox.org> | 2011-10-17 18:57:34 +0000 |
---|---|---|
committer | Thomas Martitz <kugel@rockbox.org> | 2011-10-17 18:57:34 +0000 |
commit | e44af440c50e2d87fcb57a91a8036e108a3b7362 (patch) | |
tree | d9a1a8a4780d7c2368c086bfb2cb2fcb740a2cc7 /apps/menus/main_menu.c | |
parent | a13e9644b5915215a0617d2c8b279886949f136b (diff) |
Move Time & Date menu from System to settings.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30776 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/menus/main_menu.c')
-rw-r--r-- | apps/menus/main_menu.c | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/apps/menus/main_menu.c b/apps/menus/main_menu.c index e88317aeab..394ee7c343 100644 --- a/apps/menus/main_menu.c +++ b/apps/menus/main_menu.c @@ -441,14 +441,8 @@ MENUITEM_FUNCTION(debug_menu_item, 0, ID2P(LANG_DEBUG), (menu_function)debug_menu, NULL, NULL, Icon_NOICON); MAKE_MENU(info_menu, ID2P(LANG_SYSTEM), 0, Icon_System_menu, -#if CONFIG_RTC - &timedate_item, -#endif - &show_info_item, &show_credits_item, &show_runtime_item, -#if CONFIG_RTC == 0 - &sleep_timer_call, -#endif - &debug_menu_item); + &show_info_item, &show_credits_item, + &show_runtime_item, &debug_menu_item); /* INFO MENU */ /***********************************/ @@ -482,6 +476,11 @@ MAKE_MENU(main_menu_, ID2P(LANG_SETTINGS), mainmenu_callback, #ifdef HAVE_RECORDING &recording_settings, #endif +#if CONFIG_RTC + &timedate_item, +#else + &sleep_timer_call, +#endif &manage_settings, ); /* MAIN MENU */ |