summaryrefslogtreecommitdiff
path: root/apps/debug_menu.c
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2007-02-18 02:04:47 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2007-02-18 02:04:47 +0000
commit8ff3a653bdf89747100389a2ee933d2e7b5efe08 (patch)
tree28b9039d587f1998ae54f62d3c2317bdcc72b9d9 /apps/debug_menu.c
parent1083de8e7dd9360c999dbfe08cdf5d7c1ee5c4a6 (diff)
downloadrockbox-8ff3a653bdf89747100389a2ee933d2e7b5efe08.tar.gz
rockbox-8ff3a653bdf89747100389a2ee933d2e7b5efe08.zip
Explicilty set CONFIG_ defines to 0 which are not used.. because doing
#if defined(BLAA) && BLAA == something defeats the point of Wundef git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12378 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/debug_menu.c')
-rw-r--r--apps/debug_menu.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c
index 95b9aa8f01..9d449d78b9 100644
--- a/apps/debug_menu.c
+++ b/apps/debug_menu.c
@@ -60,7 +60,7 @@
60#ifdef HAVE_MMC 60#ifdef HAVE_MMC
61#include "ata_mmc.h" 61#include "ata_mmc.h"
62#endif 62#endif
63#ifdef CONFIG_TUNER 63#if CONFIG_TUNER
64#include "tuner.h" 64#include "tuner.h"
65#include "radio.h" 65#include "radio.h"
66#endif 66#endif
@@ -1986,7 +1986,7 @@ static bool dbg_save_roms(void)
1986#endif /* CPU */ 1986#endif /* CPU */
1987 1987
1988#ifndef SIMULATOR 1988#ifndef SIMULATOR
1989#ifdef CONFIG_TUNER 1989#if CONFIG_TUNER
1990static bool dbg_fm_radio(void) 1990static bool dbg_fm_radio(void)
1991{ 1991{
1992 char buf[32]; 1992 char buf[32];
@@ -2357,7 +2357,7 @@ bool debug_menu(void)
2357#endif /* PM_DEBUG */ 2357#endif /* PM_DEBUG */
2358#endif /* HAVE_LCD_BITMAP */ 2358#endif /* HAVE_LCD_BITMAP */
2359#ifndef SIMULATOR 2359#ifndef SIMULATOR
2360#ifdef CONFIG_TUNER 2360#if CONFIG_TUNER
2361 { "FM Radio", dbg_fm_radio }, 2361 { "FM Radio", dbg_fm_radio },
2362#endif 2362#endif
2363#endif 2363#endif