mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-08 20:55:17 -05:00
Include debug menu on simulator
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12550 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
fdaacd5ec6
commit
e618becf6a
1 changed files with 4 additions and 8 deletions
|
|
@ -379,11 +379,9 @@ MENUITEM_FUNCTION(show_credits_item, ID2P(LANG_VERSION),
|
||||||
(menu_function)show_credits, NULL, NOICON);
|
(menu_function)show_credits, NULL, NOICON);
|
||||||
MENUITEM_FUNCTION(show_runtime_item, ID2P(LANG_RUNNING_TIME),
|
MENUITEM_FUNCTION(show_runtime_item, ID2P(LANG_RUNNING_TIME),
|
||||||
(menu_function)view_runtime, NULL, NOICON);
|
(menu_function)view_runtime, NULL, NOICON);
|
||||||
|
|
||||||
#ifndef SIMULATOR
|
|
||||||
MENUITEM_FUNCTION(debug_menu_item, ID2P(LANG_DEBUG),
|
MENUITEM_FUNCTION(debug_menu_item, ID2P(LANG_DEBUG),
|
||||||
(menu_function)debug_menu, NULL, NOICON);
|
(menu_function)debug_menu, NULL, NOICON);
|
||||||
#else
|
#ifdef SIMULATOR
|
||||||
MENUITEM_FUNCTION(simulate_usb_item, ID2P(LANG_USB),
|
MENUITEM_FUNCTION(simulate_usb_item, ID2P(LANG_USB),
|
||||||
(menu_function)simulate_usb, NULL, NOICON);
|
(menu_function)simulate_usb, NULL, NOICON);
|
||||||
#ifdef ROCKBOX_HAS_LOGF
|
#ifdef ROCKBOX_HAS_LOGF
|
||||||
|
|
@ -394,11 +392,9 @@ MENUITEM_FUNCTION(logfdump_item, "logfdump",(int (*)(void)) logfdump, NULL, NOIC
|
||||||
|
|
||||||
MAKE_MENU(info_menu, ID2P(LANG_INFO), 0, bitmap_icons_6x8[Icon_Questionmark],
|
MAKE_MENU(info_menu, ID2P(LANG_INFO), 0, bitmap_icons_6x8[Icon_Questionmark],
|
||||||
&show_info_item, &show_credits_item, &show_runtime_item,
|
&show_info_item, &show_credits_item, &show_runtime_item,
|
||||||
&sleep_timer_call,
|
&sleep_timer_call, &debug_menu_item
|
||||||
#ifndef SIMULATOR
|
#ifdef SIMULATOR
|
||||||
&debug_menu_item
|
,&simulate_usb_item
|
||||||
#else
|
|
||||||
&simulate_usb_item
|
|
||||||
#ifdef ROCKBOX_HAS_LOGF
|
#ifdef ROCKBOX_HAS_LOGF
|
||||||
,&logfdisplay_item, &logfdump_item
|
,&logfdisplay_item, &logfdump_item
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue