diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2007-07-23 05:40:45 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2007-07-23 05:40:45 +0000 |
| commit | fe2b376060cfedb2d53b6025fcdef9cdd8604733 (patch) | |
| tree | c13a789bac4c522757f0ccf245b524a1d76f8566 /apps/plugins | |
| parent | 8584a6bb5d8520b603b89d3fec8ffd13e399143c (diff) | |
| download | rockbox-fe2b376060cfedb2d53b6025fcdef9cdd8604733.zip rockbox-fe2b376060cfedb2d53b6025fcdef9cdd8604733.tar.gz rockbox-fe2b376060cfedb2d53b6025fcdef9cdd8604733.tar.bz2 rockbox-fe2b376060cfedb2d53b6025fcdef9cdd8604733.tar.xz | |
Fix the text for settings which have a different title than what is shown in the menu (i.e scroll options)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13962 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/lib/playback_control.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/lib/playback_control.c b/apps/plugins/lib/playback_control.c index 94f0d69..38021bc 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); + return api->option_screen((struct settings_list*)vol, false, NULL); } 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); + return api->option_screen((struct settings_list*)shuffle, false, NULL); } 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); + api->option_screen((struct settings_list*)repeat, false, NULL); if (old_repeat != api->global_settings->repeat_mode && (api->audio_status() & AUDIO_STATUS_PLAY)) |