summaryrefslogtreecommitdiffstats
path: root/apps
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
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')
-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)
}
#endif /* CONFIG_CPU == SH7034 || defined(CPU_COLDFIRE) */
-#if defined(TOSHIBA_GIGABEAT_F)
+#if defined(TOSHIBA_GIGABEAT_F) && !defined(SIMULATOR)
extern volatile bool lcd_poweroff;
@@ -2139,7 +2139,7 @@ bool debug_menu(void)
bool result;
static const struct menu_item items[] = {
-#if defined(TOSHIBA_GIGABEAT_F)
+#if defined(TOSHIBA_GIGABEAT_F) && !defined(SIMULATOR)
{ "LCD Power Off", dbg_lcd_power_off },
#endif
#if CONFIG_CPU == SH7034 || defined(CPU_COLDFIRE)