summaryrefslogtreecommitdiff
path: root/apps/settings_menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/settings_menu.c')
-rw-r--r--apps/settings_menu.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/settings_menu.c b/apps/settings_menu.c
index cd423ec934..b123e14946 100644
--- a/apps/settings_menu.c
+++ b/apps/settings_menu.c
@@ -1375,13 +1375,14 @@ static bool crossfade(void)
1375 static const struct opt_items names[] = { 1375 static const struct opt_items names[] = {
1376 { STR(LANG_OFF) }, 1376 { STR(LANG_OFF) },
1377 { STR(LANG_SHUFFLE) }, 1377 { STR(LANG_SHUFFLE) },
1378 { STR(LANG_TRACKSKIP) },
1378 { STR(LANG_ALWAYS) }, 1379 { STR(LANG_ALWAYS) },
1379 }; 1380 };
1380 1381
1381 bool ret; 1382 bool ret;
1382 1383
1383 ret=set_option( str(LANG_CROSSFADE_ENABLE), 1384 ret=set_option( str(LANG_CROSSFADE_ENABLE),
1384 &global_settings.crossfade, INT, names, 3, NULL); 1385 &global_settings.crossfade, INT, names, 4, NULL);
1385 1386
1386 audio_set_crossfade(global_settings.crossfade); 1387 audio_set_crossfade(global_settings.crossfade);
1387 1388