diff options
Diffstat (limited to 'apps/plugins/lib/playback_control.c')
| -rw-r--r-- | apps/plugins/lib/playback_control.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/apps/plugins/lib/playback_control.c b/apps/plugins/lib/playback_control.c index e034ecf..35a2b92 100644 --- a/apps/plugins/lib/playback_control.c +++ b/apps/plugins/lib/playback_control.c @@ -57,8 +57,8 @@ static bool volume(void) static bool shuffle(void) { struct opt_items names[] = { - {"No", NULL}, - {"Yes", NULL} + {"No", 0}, + {"Yes", 0} }; return api->set_option("Shuffle", &api->global_settings->playlist_shuffle, BOOL, names, 2,NULL); @@ -68,12 +68,12 @@ static bool repeat_mode(void) { bool result; static const struct opt_items names[] = { - { "Off", NULL }, - { "Repeat All", NULL }, - { "Repeat One", NULL }, - { "Repeat Shuffle", NULL }, + { "Off", 0 }, + { "Repeat All", 0 }, + { "Repeat One", 0 }, + { "Repeat Shuffle", 0 }, #ifdef AB_REPEAT_ENABLE - { "Repeat A-B", NULL } + { "Repeat A-B", 0 } #endif }; |