diff --git a/modules/juce_audio_processors/format_types/juce_VST3PluginFormat.cpp b/modules/juce_audio_processors/format_types/juce_VST3PluginFormat.cpp index 6d6e9eeb02..8ba513ccb8 100644 --- a/modules/juce_audio_processors/format_types/juce_VST3PluginFormat.cpp +++ b/modules/juce_audio_processors/format_types/juce_VST3PluginFormat.cpp @@ -398,7 +398,7 @@ public: if (index < 0) return kResultFalse; - owner->sendParamChangeMessageToListeners (index, valueNormalized); + owner->sendParamChangeMessageToListeners (index, (float) valueNormalized); return owner->editController->setParamNormalized (paramID, valueNormalized); }