summaryrefslogtreecommitdiff
path: root/libs/surfaces/faderport8
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-05-13 02:02:17 +0200
committerRobin Gareus <robin@gareus.org>2017-05-13 02:02:54 +0200
commit3efe5bde5fcd49b1fa1347bb101281451ca3523c (patch)
tree22ffe42a272a14ebc7218379cfce11a5221542e2 /libs/surfaces/faderport8
parent257cc06cfc7ae2281a8521b4db334d1f8560c1b6 (diff)
Update FP8: new controllables, clarify 32C bell-shape labels
Diffstat (limited to 'libs/surfaces/faderport8')
-rw-r--r--libs/surfaces/faderport8/faderport8.cc8
1 files changed, 7 insertions, 1 deletions
diff --git a/libs/surfaces/faderport8/faderport8.cc b/libs/surfaces/faderport8/faderport8.cc
index ce9dbffe87..81da4c9fee 100644
--- a/libs/surfaces/faderport8/faderport8.cc
+++ b/libs/surfaces/faderport8/faderport8.cc
@@ -1063,7 +1063,13 @@ FaderPort8::build_well_known_processor_ctrls (boost::shared_ptr<Stripable> s, bo
if (eq) {
int cnt = s->eq_band_cnt();
PUSH_BACK_NON_NULL ("Enable", s->eq_enable_controllable ());
- PUSH_BACK_NON_NULL ("HPF", s->eq_hpf_controllable ());
+ PUSH_BACK_NON_NULL ("HP/LP", s->filter_enable_controllable ());
+#ifdef MIXBUS32
+ PUSH_BACK_NON_NULL ("Lo-Bell", s->eq_lpf_controllable ());
+ PUSH_BACK_NON_NULL ("Hi-Bell", s->eq_hpf_controllable ());
+#else
+ PUSH_BACK_NON_NULL ("Freq HP", s->eq_hpf_controllable ());
+#endif
for (int band = 0; band < cnt; ++band) {
std::string bn = s->eq_band_name (band);
PUSH_BACK_NON_NULL (string_compose ("Gain %1", bn), s->eq_gain_controllable (band));