From 0251dc54e0ca73beff1e84be8ac7fde69ec47134 Mon Sep 17 00:00:00 2001 From: Leland Lucius Date: Sat, 1 Aug 2015 01:31:26 -0500 Subject: [PATCH] Fix for bug #1083 --- src/effects/VST/VSTEffect.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/effects/VST/VSTEffect.cpp b/src/effects/VST/VSTEffect.cpp index 83b3483c7..84d6d73dd 100644 --- a/src/effects/VST/VSTEffect.cpp +++ b/src/effects/VST/VSTEffect.cpp @@ -2594,7 +2594,10 @@ float VSTEffect::callGetParameter(int index) void VSTEffect::callSetParameter(int index, float value) { - if (callDispatcher(effCanBeAutomated, 0, index, NULL, 0.0)) +// LL: Apparently, some VSTs do not respond to this call, even though +// the parameters can be automated. +// See bug #1083. +// if (callDispatcher(effCanBeAutomated, 0, index, NULL, 0.0)) { mAEffect->setParameter(mAEffect, index, value);