From: Ben Loftis Date: Sat, 13 May 2017 12:26:55 +0000 (-0500) Subject: Fix copy+paste error for mb32c filter freq. X-Git-Tag: 5.9~14 X-Git-Url: https://main.carlh.net/gitweb/?p=ardour.git;a=commitdiff_plain;h=b92f75481ef253211cac2d2b2c87a236c8270133 Fix copy+paste error for mb32c filter freq. --- 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(); } #ifdef MIXBUS32C - return boost::dynamic_pointer_cast (eq->control (Evoral::Parameter (ARDOUR::PluginAutomation, 0, 3))); + return boost::dynamic_pointer_cast (eq->control (Evoral::Parameter (ARDOUR::PluginAutomation, 0, 5))); #else return boost::dynamic_pointer_cast (eq->control (Evoral::Parameter (ARDOUR::PluginAutomation, 0, 2))); #endif