summaryrefslogtreecommitdiff
path: root/libs/ardour/route.cc
diff options
context:
space:
mode:
authorBen Loftis <ben@harrisonconsoles.com>2017-05-13 07:26:55 -0500
committerBen Loftis <ben@harrisonconsoles.com>2017-05-13 07:27:08 -0500
commitb92f75481ef253211cac2d2b2c87a236c8270133 (patch)
tree513a772a122508d4cee90bdf75385c7e3749321d /libs/ardour/route.cc
parent3efe5bde5fcd49b1fa1347bb101281451ca3523c (diff)
Fix copy+paste error for mb32c filter freq.
Diffstat (limited to 'libs/ardour/route.cc')
-rw-r--r--libs/ardour/route.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc
index acb471303b..41d85bcda5 100644
--- a/libs/ardour/route.cc
+++ b/libs/ardour/route.cc
@@ -5105,7 +5105,7 @@ Route::eq_hpf_controllable () const
return boost::shared_ptr<AutomationControl>();
}
#ifdef MIXBUS32C
- return boost::dynamic_pointer_cast<ARDOUR::AutomationControl> (eq->control (Evoral::Parameter (ARDOUR::PluginAutomation, 0, 3)));
+ return boost::dynamic_pointer_cast<ARDOUR::AutomationControl> (eq->control (Evoral::Parameter (ARDOUR::PluginAutomation, 0, 5)));
#else
return boost::dynamic_pointer_cast<ARDOUR::AutomationControl> (eq->control (Evoral::Parameter (ARDOUR::PluginAutomation, 0, 2)));
#endif