summaryrefslogtreecommitdiff
path: root/libs/ardour/session_vst.cc
diff options
context:
space:
mode:
authorJohn Emmas <johne53@tiscali.co.uk>2015-10-14 14:54:27 +0100
committerJohn Emmas <johne53@tiscali.co.uk>2015-10-14 14:54:27 +0100
commit8d46cc99fe2778c5658b659f4f1fe6ac828bb9e9 (patch)
tree8d0002050f40677aed4f1180c67fc29434923778 /libs/ardour/session_vst.cc
parent334cc37e1b99df2282150ece22e6cd056fedfa07 (diff)
Fix a problem where VST automation data wasn't getting written (if the adjustments were made from the plugin's own controls)4.3
Diffstat (limited to 'libs/ardour/session_vst.cc')
-rw-r--r--libs/ardour/session_vst.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/session_vst.cc b/libs/ardour/session_vst.cc
index a9f404fcb2..9bf2847331 100644
--- a/libs/ardour/session_vst.cc
+++ b/libs/ardour/session_vst.cc
@@ -86,7 +86,7 @@ intptr_t Session::vst_callback (
SHOW_CALLBACK ("audioMasterAutomate");
// index, value, returns 0
if (plug) {
- plug->set_parameter (index, opt);
+ plug->set_parameter_automated (index, opt);
}
return 0;