diff options
author | Linus Nielsen Feltzing <linus@haxx.se> | 2005-07-11 12:09:01 +0000 |
---|---|---|
committer | Linus Nielsen Feltzing <linus@haxx.se> | 2005-07-11 12:09:01 +0000 |
commit | b6242daf4d1ee69e3608641f01a3bc27d0b0cafd (patch) | |
tree | 09aa2ad562f6a33a0faa6051f365e2c24713ebe3 | |
parent | c4b7c671f92b4dab028c45091c94e40dcead3443 (diff) | |
download | rockbox-b6242daf4d1ee69e3608641f01a3bc27d0b0cafd.tar.gz rockbox-b6242daf4d1ee69e3608641f01a3bc27d0b0cafd.zip |
Wrong model check in the debug menu. Now the recording test is back on the H120/H140 models.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7099 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | apps/debug_menu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c index 7778f35de4..f5477c2c51 100644 --- a/apps/debug_menu.c +++ b/apps/debug_menu.c @@ -58,7 +58,7 @@ #include "ata_mmc.h" #endif #include "logfdisp.h" -#if defined(IRIVER_H100) && !defined(SIMULATOR) +#if defined(IRIVER_H100_SERIES) && !defined(SIMULATOR) extern bool pcm_rec_screen(void); #endif #if CONFIG_HWCODEC == MASNONE @@ -1568,7 +1568,7 @@ bool debug_menu(void) #ifdef HAVE_ADJUSTABLE_CPU_FREQ { "CPU frequency", dbg_cpufreq }, #endif -#if defined(IRIVER_H100) && !defined(SIMULATOR) +#if defined(IRIVER_H100_SERIES) && !defined(SIMULATOR) { "PCM recording", pcm_rec_screen }, #endif #if CONFIG_CPU == SH7034 |