mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-14 02:27:39 -04:00
Accept FS#7966 by Bertrik Sikken, correcting captions in playback control submenus
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15229 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
2c816d16c9
commit
5a1b179f12
1 changed files with 3 additions and 3 deletions
|
@ -61,14 +61,14 @@ static bool volume(void)
|
|||
{
|
||||
const struct settings_list* vol =
|
||||
api->find_setting(&api->global_settings->volume, NULL);
|
||||
return api->option_screen((struct settings_list*)vol, false, NULL);
|
||||
return api->option_screen((struct settings_list*)vol, false, "Volume");
|
||||
}
|
||||
|
||||
static bool shuffle(void)
|
||||
{
|
||||
const struct settings_list* shuffle =
|
||||
api->find_setting(&api->global_settings->playlist_shuffle, NULL);
|
||||
return api->option_screen((struct settings_list*)shuffle, false, NULL);
|
||||
return api->option_screen((struct settings_list*)shuffle, false, "Shuffle");
|
||||
}
|
||||
|
||||
static bool repeat_mode(void)
|
||||
|
@ -77,7 +77,7 @@ static bool repeat_mode(void)
|
|||
api->find_setting(&api->global_settings->repeat_mode, NULL);
|
||||
int old_repeat = api->global_settings->repeat_mode;
|
||||
|
||||
api->option_screen((struct settings_list*)repeat, false, NULL);
|
||||
api->option_screen((struct settings_list*)repeat, false, "Repeat");
|
||||
|
||||
if (old_repeat != api->global_settings->repeat_mode &&
|
||||
(api->audio_status() & AUDIO_STATUS_PLAY))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue