diff options
author | Linus Nielsen Feltzing <linus@haxx.se> | 2003-05-03 02:40:09 +0000 |
---|---|---|
committer | Linus Nielsen Feltzing <linus@haxx.se> | 2003-05-03 02:40:09 +0000 |
commit | 331c7d9255e7873d3583aceea6bd00c7360f2366 (patch) | |
tree | d0dfb9e1eb62e8e96ef14e01b013179118c6c6f1 /apps/main_menu.c | |
parent | 86704740792ae81add713f4f4b619c57fee79e47 (diff) |
Finally, FM radio support on the FM Recorder
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3640 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/main_menu.c')
-rw-r--r-- | apps/main_menu.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/main_menu.c b/apps/main_menu.c index 9f4aa8f812..b455e074a2 100644 --- a/apps/main_menu.c +++ b/apps/main_menu.c @@ -41,6 +41,9 @@ #include "fat.h" #include "sleeptimer.h" #include "wps.h" +#ifdef HAVE_FMRADIO +#include "radio.h" +#endif #include "lang.h" @@ -258,6 +261,9 @@ bool main_menu(void) struct menu_items items[] = { { str(LANG_SOUND_SETTINGS), sound_menu }, { str(LANG_GENERAL_SETTINGS), settings_menu }, +#ifdef HAVE_FMRADIO + { "FM Radio", radio_screen }, +#endif #ifdef HAVE_MAS3587F { str(LANG_RECORDING), recording_screen }, { str(LANG_RECORDING_SETTINGS), recording_menu }, |