diff options
| -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; |