summaryrefslogtreecommitdiff
path: root/apps/settings_list.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/settings_list.c')
-rw-r--r--apps/settings_list.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/settings_list.c b/apps/settings_list.c
index 41c20c7809..0ad638746a 100644
--- a/apps/settings_list.c
+++ b/apps/settings_list.c
@@ -845,7 +845,10 @@ const struct settings_list settings[] = {
845 845
846#ifdef AUDIOHW_HAVE_FILTER_ROLL_OFF 846#ifdef AUDIOHW_HAVE_FILTER_ROLL_OFF
847 CHOICE_SETTING(F_SOUNDSETTING, roll_off, LANG_FILTER_ROLL_OFF, 0, 847 CHOICE_SETTING(F_SOUNDSETTING, roll_off, LANG_FILTER_ROLL_OFF, 0,
848#ifndef AUDIOHW_HAVE_SHORT_ROLL_OFF 848#if defined(AUDIOHW_HAVE_SHORT2_ROLL_OFF)
849 "roll_off", "sharp,slow,short sharp,short slow", sound_set_filter_roll_off,
850 4, ID2P(LANG_FILTER_SHARP), ID2P(LANG_FILTER_SLOW), ID2P(LANG_FILTER_SHORT_SHARP), ID2P(LANG_FILTER_SHORT_SLOW)),
851#elif defined(AUDIOHW_HAVE_SHORT_ROLL_OFF)
849 "roll_off", "sharp,slow", sound_set_filter_roll_off, 852 "roll_off", "sharp,slow", sound_set_filter_roll_off,
850 2, ID2P(LANG_FILTER_SHARP), ID2P(LANG_FILTER_SLOW)), 853 2, ID2P(LANG_FILTER_SHARP), ID2P(LANG_FILTER_SLOW)),
851#else 854#else