summaryrefslogtreecommitdiff
path: root/apps/settings_list.c
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2018-06-29 16:09:28 -0400
committerSolomon Peachy <pizza@shaftnet.org>2019-01-02 08:10:01 -0500
commitd4942cc74c82c465ea395637c77ed06565b8b497 (patch)
tree8c1fa737c93f8a2ade5a1566857dc4dc8f578bd6 /apps/settings_list.c
parentaf9459a7992596e932c6d8cc0a6366ff0f0b0fca (diff)
downloadrockbox-d4942cc74c82c465ea395637c77ed06565b8b497.tar.gz
rockbox-d4942cc74c82c465ea395637c77ed06565b8b497.zip
Add Xuelin iHIFI 770/770C/800 support
Taken from the xvortex fork (Roman Stolyarov) Ported, rebased, and cleaned up by myself. Change-Id: I7b2bca2d29502f2e4544e42f3d122786dd4b7978
Diffstat (limited to 'apps/settings_list.c')
-rw-r--r--apps/settings_list.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/settings_list.c b/apps/settings_list.c
index eb3c76865d..1c41954390 100644
--- a/apps/settings_list.c
+++ b/apps/settings_list.c
@@ -876,8 +876,13 @@ const struct settings_list settings[] = {
876 876
877#ifdef AUDIOHW_HAVE_FILTER_ROLL_OFF 877#ifdef AUDIOHW_HAVE_FILTER_ROLL_OFF
878 CHOICE_SETTING(F_SOUNDSETTING, roll_off, LANG_FILTER_ROLL_OFF, 0, 878 CHOICE_SETTING(F_SOUNDSETTING, roll_off, LANG_FILTER_ROLL_OFF, 0,
879#ifndef AUDIOHW_HAVE_SHORT_ROLL_OFF
879 "roll_off", "sharp,slow", sound_set_filter_roll_off, 880 "roll_off", "sharp,slow", sound_set_filter_roll_off,
880 2, ID2P(LANG_FILTER_SHARP), ID2P(LANG_FILTER_SLOW)), 881 2, ID2P(LANG_FILTER_SHARP), ID2P(LANG_FILTER_SLOW)),
882#else
883 "roll_off", "sharp,slow,short,bypass", sound_set_filter_roll_off,
884 4, ID2P(LANG_FILTER_SHARP), ID2P(LANG_FILTER_SLOW), ID2P(LANG_FILTER_SHORT), ID2P(LANG_FILTER_BYPASS)),
885#endif
881#endif 886#endif
882 887
883 /* playback */ 888 /* playback */