summaryrefslogtreecommitdiff
path: root/apps/settings_list.c
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2020-10-03 18:17:11 -0400
committerSolomon Peachy <pizza@shaftnet.org>2020-10-09 12:41:18 -0400
commitaabc8aca47e60cf745a34af28c50679fcb967910 (patch)
treecfe17f546aae9785fb13482f39527e2da0597ccb /apps/settings_list.c
parent4231c2c83f2b5331e3e38b10a308ee3752315f9c (diff)
downloadrockbox-aabc8aca47e60cf745a34af28c50679fcb967910.tar.gz
rockbox-aabc8aca47e60cf745a34af28c50679fcb967910.zip
New port: FiiO M3K
Most credit goes to: Roman Skylarov Additional integration and refactoring by myself. *** COMPLETELY UNTESTED *** Change-Id: Ia64c36d92e0214c6b15f7a868df286f8113ea27b
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