summaryrefslogtreecommitdiff
path: root/apps/debug_menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/debug_menu.c')
-rw-r--r--apps/debug_menu.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c
index ca06907618..59041eb450 100644
--- a/apps/debug_menu.c
+++ b/apps/debug_menu.c
@@ -2584,7 +2584,8 @@ static bool cpu_boost_log(void)
2584} 2584}
2585#endif 2585#endif
2586 2586
2587#if (defined(HAVE_WHEEL_ACCELERATION) && (CONFIG_KEYPAD==IPOD_4G_PAD) && !defined(SIMULATOR)) 2587#if (defined(HAVE_WHEEL_ACCELERATION) && (CONFIG_KEYPAD==IPOD_4G_PAD) \
2588 && !defined(IPOD_MINI) && !defined(SIMULATOR))
2588extern bool wheel_is_touched; 2589extern bool wheel_is_touched;
2589extern int old_wheel_value; 2590extern int old_wheel_value;
2590extern int new_wheel_value; 2591extern int new_wheel_value;
@@ -2790,7 +2791,8 @@ static const struct the_menu_item menuitems[] = {
2790#ifdef CPU_BOOST_LOGGING 2791#ifdef CPU_BOOST_LOGGING
2791 {"cpu_boost log",cpu_boost_log}, 2792 {"cpu_boost log",cpu_boost_log},
2792#endif 2793#endif
2793#if (defined(HAVE_WHEEL_ACCELERATION) && (CONFIG_KEYPAD==IPOD_4G_PAD) && !defined(SIMULATOR)) 2794#if (defined(HAVE_WHEEL_ACCELERATION) && (CONFIG_KEYPAD==IPOD_4G_PAD) \
2795 && !defined(IPOD_MINI) && !defined(SIMULATOR))
2794 {"Debug scrollwheel", dbg_scrollwheel }, 2796 {"Debug scrollwheel", dbg_scrollwheel },
2795#endif 2797#endif
2796 }; 2798 };