summaryrefslogtreecommitdiff
path: root/apps/plugins/lib
diff options
context:
space:
mode:
authorNils Wallménius <nils@rockbox.org>2007-10-20 21:56:43 +0000
committerNils Wallménius <nils@rockbox.org>2007-10-20 21:56:43 +0000
commit5a1b179f12b668e41261de62338dd9596ff86957 (patch)
treeac943c3e00e2e8c89265cd18a982fa8b1c68d2d0 /apps/plugins/lib
parent2c816d16c9ded0fffeb26d06209cef665a0d0424 (diff)
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
Diffstat (limited to 'apps/plugins/lib')
-rw-r--r--apps/plugins/lib/playback_control.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/lib/playback_control.c b/apps/plugins/lib/playback_control.c
index 38021bc95e..bc8f1c735d 100644
--- a/apps/plugins/lib/playback_control.c
+++ b/apps/plugins/lib/playback_control.c
@@ -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))