diff options
| author | Hardeep Sidhu <dyp@pobox.com> | 2002-09-12 06:45:47 +0000 |
|---|---|---|
| committer | Hardeep Sidhu <dyp@pobox.com> | 2002-09-12 06:45:47 +0000 |
| commit | 8a1187e80aa7decee89339b6ebae686faf0646b3 (patch) | |
| tree | 17c38173a4b1adeb8678c88902cdcb7037d82305 /apps/settings_menu.c | |
| parent | 2625ebb202b546ff6d4c87b0c007e8df33df37d7 (diff) | |
| download | rockbox-8a1187e80aa7decee89339b6ebae686faf0646b3.zip rockbox-8a1187e80aa7decee89339b6ebae686faf0646b3.tar.gz rockbox-8a1187e80aa7decee89339b6ebae686faf0646b3.tar.bz2 rockbox-8a1187e80aa7decee89339b6ebae686faf0646b3.tar.xz | |
Renamed "Browse Current" to "Follow Playlist"
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2263 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings_menu.c')
| -rw-r--r-- | apps/settings_menu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/settings_menu.c b/apps/settings_menu.c index 5a4879a..cc5ff3c 100644 --- a/apps/settings_menu.c +++ b/apps/settings_menu.c @@ -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) ); |