1
0
Fork 0
forked from len0rd/rockbox

Renamed "Browse Current" to "Follow Playlist"

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2263 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Hardeep Sidhu 2002-09-12 06:45:47 +00:00
parent 2625ebb202
commit 8a1187e80a

View file

@ -193,7 +193,7 @@ static Menu ff_rewind_accel(void)
static Menu browse_current(void)
{
set_bool( "Browse Current Song", &global_settings.browse_current );
set_bool( "Follow Playlist", &global_settings.browse_current );
return MENU_OK;
}
@ -271,7 +271,7 @@ static Menu fileview_settings_menu(void)
{ "Sort Mode", sort_case },
{ "Music Filter", mp3_filter },
{ "Hidden Files", show_hidden_files },
{ "Browse Current", browse_current },
{ "Follow Playlist", browse_current },
};
m=menu_init( items, sizeof items / sizeof(struct menu_items) );