diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2020-10-09 17:32:34 -0400 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2020-10-09 21:33:26 +0000 |
commit | 02a49386a97ae22ccea3c5d9cc183d903a44ee06 (patch) | |
tree | 4f2e70feaeb50787cbe8c5c64067f944f7a02fd9 /apps | |
parent | aabc8aca47e60cf745a34af28c50679fcb967910 (diff) |
Fix the FILTER_ROLL_OFF build; got a test inverted.
Change-Id: I8d4ade8b59022f5e8275bec96d98f806e7e09c37
Diffstat (limited to 'apps')
-rw-r--r-- | apps/settings_list.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/settings_list.c b/apps/settings_list.c index 0ad638746a..47384bdbed 100644 --- a/apps/settings_list.c +++ b/apps/settings_list.c @@ -849,11 +849,11 @@ const struct settings_list settings[] = { "roll_off", "sharp,slow,short sharp,short slow", sound_set_filter_roll_off, 4, ID2P(LANG_FILTER_SHARP), ID2P(LANG_FILTER_SLOW), ID2P(LANG_FILTER_SHORT_SHARP), ID2P(LANG_FILTER_SHORT_SLOW)), #elif defined(AUDIOHW_HAVE_SHORT_ROLL_OFF) - "roll_off", "sharp,slow", sound_set_filter_roll_off, - 2, ID2P(LANG_FILTER_SHARP), ID2P(LANG_FILTER_SLOW)), -#else "roll_off", "sharp,slow,short,bypass", sound_set_filter_roll_off, 4, ID2P(LANG_FILTER_SHARP), ID2P(LANG_FILTER_SLOW), ID2P(LANG_FILTER_SHORT), ID2P(LANG_FILTER_BYPASS)), +#else + "roll_off", "sharp,slow", sound_set_filter_roll_off, + 2, ID2P(LANG_FILTER_SHARP), ID2P(LANG_FILTER_SLOW)), #endif #endif |