diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2005-02-04 10:57:51 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2005-02-04 10:57:51 +0000 |
| commit | bf12c6a9a9dadfec5ad9e08374dedaa5e73c64a3 (patch) | |
| tree | 36c5057a291e9f81d21b5006ccb3191d32f07d31 /apps | |
| parent | 8a8bd91695f21343baf8fe3d1b118c885716f2a4 (diff) | |
| download | rockbox-bf12c6a9a9dadfec5ad9e08374dedaa5e73c64a3.zip rockbox-bf12c6a9a9dadfec5ad9e08374dedaa5e73c64a3.tar.gz rockbox-bf12c6a9a9dadfec5ad9e08374dedaa5e73c64a3.tar.bz2 rockbox-bf12c6a9a9dadfec5ad9e08374dedaa5e73c64a3.tar.xz | |
recording features depends on HAVE_RECORDING, not a specific MAS model
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5779 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/main_menu.c | 7 | ||||
| -rw-r--r-- | apps/sound_menu.c | 4 |
2 files changed, 4 insertions, 7 deletions
diff --git a/apps/main_menu.c b/apps/main_menu.c index ea66286..6101f4c 100644 --- a/apps/main_menu.c +++ b/apps/main_menu.c @@ -52,7 +52,7 @@ #include "misc.h" #include "lang.h" -#if CONFIG_HWCODEC == MAS3587F +#ifdef HAVE_RECORDING #include "recording.h" #endif @@ -274,14 +274,11 @@ static bool plugin_browse(void) return rockbox_browse(PLUGIN_DIR, SHOW_PLUGINS); } -#if CONFIG_HWCODEC == MAS3587F +#ifdef HAVE_RECORDING static bool recording_settings(void) { return recording_menu(false); } -#endif - -#if CONFIG_HWCODEC == MAS3587F bool rec_menu(void) { diff --git a/apps/sound_menu.c b/apps/sound_menu.c index 09e6fb5..33bb80f 100644 --- a/apps/sound_menu.c +++ b/apps/sound_menu.c @@ -246,7 +246,7 @@ static bool avc(void) } #endif -#if CONFIG_HWCODEC == MAS3587F +#ifdef HAVE_RECORDING static bool recsource(void) { static const struct opt_items names[] = { @@ -438,7 +438,7 @@ bool sound_menu(void) return result; } -#if CONFIG_HWCODEC == MAS3587F +#ifdef HAVE_RECORDING bool recording_menu(bool no_source) { int m; |