summaryrefslogtreecommitdiff
path: root/apps/debug_menu.c
diff options
context:
space:
mode:
authorGreg White <gwhite@rockbox.org>2007-01-04 12:13:56 +0000
committerGreg White <gwhite@rockbox.org>2007-01-04 12:13:56 +0000
commit922c0d6d3357bcd36f0c695a19ee2ab3f20c52de (patch)
tree83eae28e2d6954d021a7cba86da73851e8885c30 /apps/debug_menu.c
parentae5cf68e481ff09d6da5078ecb8ea6d05d6d3290 (diff)
downloadrockbox-922c0d6d3357bcd36f0c695a19ee2ab3f20c52de.tar.gz
rockbox-922c0d6d3357bcd36f0c695a19ee2ab3f20c52de.zip
Fix simulator build
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11910 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/debug_menu.c')
-rw-r--r--apps/debug_menu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c
index c459b7b8de..4f2266ff47 100644
--- a/apps/debug_menu.c
+++ b/apps/debug_menu.c
@@ -2049,7 +2049,7 @@ static bool dbg_set_memory_guard(void)
2049} 2049}
2050#endif /* CONFIG_CPU == SH7034 || defined(CPU_COLDFIRE) */ 2050#endif /* CONFIG_CPU == SH7034 || defined(CPU_COLDFIRE) */
2051 2051
2052#if defined(TOSHIBA_GIGABEAT_F) 2052#if defined(TOSHIBA_GIGABEAT_F) && !defined(SIMULATOR)
2053 2053
2054extern volatile bool lcd_poweroff; 2054extern volatile bool lcd_poweroff;
2055 2055
@@ -2139,7 +2139,7 @@ bool debug_menu(void)
2139 bool result; 2139 bool result;
2140 2140
2141 static const struct menu_item items[] = { 2141 static const struct menu_item items[] = {
2142#if defined(TOSHIBA_GIGABEAT_F) 2142#if defined(TOSHIBA_GIGABEAT_F) && !defined(SIMULATOR)
2143 { "LCD Power Off", dbg_lcd_power_off }, 2143 { "LCD Power Off", dbg_lcd_power_off },
2144#endif 2144#endif
2145#if CONFIG_CPU == SH7034 || defined(CPU_COLDFIRE) 2145#if CONFIG_CPU == SH7034 || defined(CPU_COLDFIRE)