1
0
Fork 0
forked from len0rd/rockbox

Recording in FM screen, USB mode possible in FM and recording screen

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4046 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2003-11-20 00:33:43 +00:00
parent 577e571958
commit aaa99e70ba
9 changed files with 265 additions and 91 deletions

View file

@ -252,6 +252,11 @@ static bool plugin_browse(void)
return rockbox_browse(PLUGIN_DIR, SHOW_PLUGINS);
}
static bool recording_settings(void)
{
return recording_menu(false);
}
bool main_menu(void)
{
int m;
@ -262,11 +267,11 @@ bool main_menu(void)
{ str(LANG_SOUND_SETTINGS), sound_menu },
{ str(LANG_GENERAL_SETTINGS), settings_menu },
#ifdef HAVE_FMRADIO
{ "FM Radio", radio_screen },
{ str(LANG_FM_RADIO), radio_screen },
#endif
#ifdef HAVE_MAS3587F
{ str(LANG_RECORDING), recording_screen },
{ str(LANG_RECORDING_SETTINGS), recording_menu },
{ str(LANG_RECORDING_SETTINGS), recording_settings},
#endif
{ str(LANG_PLAYLIST_MENU), playlist_menu },
{ str(LANG_MENU_SHOW_ID3_INFO), browse_id3 },