summaryrefslogtreecommitdiff
path: root/apps/plugins/lib/playback_control.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/lib/playback_control.c')
-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 a7f5b8baff..3e97916400 100644
--- a/apps/plugins/lib/playback_control.c
+++ b/apps/plugins/lib/playback_control.c
@@ -65,21 +65,21 @@ static bool nexttrack(void)
65static bool volume(void) 65static bool volume(void)
66{ 66{
67 const struct settings_list* vol = 67 const struct settings_list* vol =
68 rb->find_setting(&rb->global_settings->volume, NULL); 68 rb->find_setting(&rb->global_settings->volume);
69 return rb->option_screen((struct settings_list*)vol, parentvp, false, "Volume"); 69 return rb->option_screen((struct settings_list*)vol, parentvp, false, "Volume");
70} 70}
71 71
72static bool shuffle(void) 72static bool shuffle(void)
73{ 73{
74 const struct settings_list* shuffle = 74 const struct settings_list* shuffle =
75 rb->find_setting(&rb->global_settings->playlist_shuffle, NULL); 75 rb->find_setting(&rb->global_settings->playlist_shuffle);
76 return rb->option_screen((struct settings_list*)shuffle, parentvp, false, "Shuffle"); 76 return rb->option_screen((struct settings_list*)shuffle, parentvp, false, "Shuffle");
77} 77}
78 78
79static bool repeat_mode(void) 79static bool repeat_mode(void)
80{ 80{
81 const struct settings_list* repeat = 81 const struct settings_list* repeat =
82 rb->find_setting(&rb->global_settings->repeat_mode, NULL); 82 rb->find_setting(&rb->global_settings->repeat_mode);
83 int old_repeat = rb->global_settings->repeat_mode; 83 int old_repeat = rb->global_settings->repeat_mode;
84 84
85 rb->option_screen((struct settings_list*)repeat, parentvp, false, "Repeat"); 85 rb->option_screen((struct settings_list*)repeat, parentvp, false, "Repeat");