summaryrefslogtreecommitdiff
path: root/apps/debug_menu.c
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2011-11-17 19:52:59 +0000
committerThomas Martitz <kugel@rockbox.org>2011-11-17 19:52:59 +0000
commit71d73fd470e339adff65aff0db6a44d1d6418b31 (patch)
tree74f8d82b2eb72dd229c33b925b37976327901aaf /apps/debug_menu.c
parent7e211ff9d14aa732d1f54271f8a46ffc2e1b6342 (diff)
downloadrockbox-71d73fd470e339adff65aff0db6a44d1d6418b31.tar.gz
rockbox-71d73fd470e339adff65aff0db6a44d1d6418b31.zip
Remove sim_tasks from the sdl application build.
This unfortunately removes the screendump feature, but usually there are better desktop apps for that. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31011 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/debug_menu.c')
-rw-r--r--apps/debug_menu.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c
index 809644b3d2..79a0752c4a 100644
--- a/apps/debug_menu.c
+++ b/apps/debug_menu.c
@@ -1771,7 +1771,7 @@ static bool dbg_fm_radio(void)
1771#endif /* CONFIG_TUNER */ 1771#endif /* CONFIG_TUNER */
1772#endif /* !SIMULATOR */ 1772#endif /* !SIMULATOR */
1773 1773
1774#ifdef HAVE_LCD_BITMAP 1774#if defined(HAVE_LCD_BITMAP) && !defined(APPLICATION)
1775extern bool do_screendump_instead_of_usb; 1775extern bool do_screendump_instead_of_usb;
1776 1776
1777static bool dbg_screendump(void) 1777static bool dbg_screendump(void)
@@ -2057,8 +2057,10 @@ static const struct the_menu_item menuitems[] = {
2057#if (CONFIG_PLATFORM & PLATFORM_NATIVE) 2057#if (CONFIG_PLATFORM & PLATFORM_NATIVE)
2058 { "View battery", view_battery }, 2058 { "View battery", view_battery },
2059#endif 2059#endif
2060#ifndef APPLICATION
2060 { "Screendump", dbg_screendump }, 2061 { "Screendump", dbg_screendump },
2061#endif 2062#endif
2063#endif
2062#if (CONFIG_PLATFORM & PLATFORM_NATIVE) 2064#if (CONFIG_PLATFORM & PLATFORM_NATIVE)
2063 { "View HW info", dbg_hw_info }, 2065 { "View HW info", dbg_hw_info },
2064#endif 2066#endif