Browse Source

Minor compiler warning fix.

tags/2021-05-28
jules 11 years ago
parent
commit
4e6e2a396e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/juce_audio_processors/format_types/juce_VST3PluginFormat.cpp

+ 1
- 1
modules/juce_audio_processors/format_types/juce_VST3PluginFormat.cpp View File

@@ -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);
}


Loading…
Cancel
Save