Fix copy+paste error for mb32c filter freq.

This commit is contained in:
Ben Loftis 2017-05-13 07:26:55 -05:00
parent 3efe5bde5f
commit b92f75481e

View File

@ -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