From d633ee5d3139f6d3bafb2c92ae5565a75b53cd56 Mon Sep 17 00:00:00 2001 From: jules Date: Tue, 11 Mar 2014 11:03:35 +0000 Subject: [PATCH] Stopped VST3 plugins sending parameter updates on the message thread, as these could interfere with updates being processed on the audio thread. --- modules/juce_audio_plugin_client/VST3/juce_VST3_Wrapper.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/modules/juce_audio_plugin_client/VST3/juce_VST3_Wrapper.cpp b/modules/juce_audio_plugin_client/VST3/juce_VST3_Wrapper.cpp index 04f74d9045..07f8bb212b 100644 --- a/modules/juce_audio_plugin_client/VST3/juce_VST3_Wrapper.cpp +++ b/modules/juce_audio_plugin_client/VST3/juce_VST3_Wrapper.cpp @@ -194,7 +194,6 @@ public: { valueNormalized = v; changed(); - owner.setParameter (paramIndex, (float) v); return true; }