Fix a problem where VST automation data wasn't getting written (if the adjustments...
[ardour.git] / libs / ardour / plugin.cc
index 89f6d24137f862f9f4ddc13cfd0e7f375c409806..f14c56798b65e4cb404c8cf6b8162037baa90fdf 100644 (file)
@@ -365,6 +365,12 @@ Plugin::set_parameter (uint32_t which, float)
        ParameterChanged (which, get_parameter (which)); /* EMIT SIGNAL */
 }
 
+void
+Plugin::set_parameter_automated (uint32_t which, float val)
+{
+       Plugin::set_parameter (which, val);
+}
+
 int
 Plugin::set_state (const XMLNode& node, int /*version*/)
 {