summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2020-10-09 17:32:34 -0400
committerSolomon Peachy <pizza@shaftnet.org>2020-10-09 21:33:26 +0000
commit02a49386a97ae22ccea3c5d9cc183d903a44ee06 (patch)
tree4f2e70feaeb50787cbe8c5c64067f944f7a02fd9 /apps
parentaabc8aca47e60cf745a34af28c50679fcb967910 (diff)
downloadrockbox-02a49386a97ae22ccea3c5d9cc183d903a44ee06.tar.gz
rockbox-02a49386a97ae22ccea3c5d9cc183d903a44ee06.zip
Fix the FILTER_ROLL_OFF build; got a test inverted.
Change-Id: I8d4ade8b59022f5e8275bec96d98f806e7e09c37
Diffstat (limited to 'apps')
-rw-r--r--apps/settings_list.c6
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[] = {
849 "roll_off", "sharp,slow,short sharp,short slow", sound_set_filter_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)), 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) 851#elif defined(AUDIOHW_HAVE_SHORT_ROLL_OFF)
852 "roll_off", "sharp,slow", sound_set_filter_roll_off,
853 2, ID2P(LANG_FILTER_SHARP), ID2P(LANG_FILTER_SLOW)),
854#else
855 "roll_off", "sharp,slow,short,bypass", sound_set_filter_roll_off, 852 "roll_off", "sharp,slow,short,bypass", sound_set_filter_roll_off,
856 4, ID2P(LANG_FILTER_SHARP), ID2P(LANG_FILTER_SLOW), ID2P(LANG_FILTER_SHORT), ID2P(LANG_FILTER_BYPASS)), 853 4, ID2P(LANG_FILTER_SHARP), ID2P(LANG_FILTER_SLOW), ID2P(LANG_FILTER_SHORT), ID2P(LANG_FILTER_BYPASS)),
854#else
855 "roll_off", "sharp,slow", sound_set_filter_roll_off,
856 2, ID2P(LANG_FILTER_SHARP), ID2P(LANG_FILTER_SLOW)),
857#endif 857#endif
858#endif 858#endif
859 859