Browse Source

Fixed a typo in recent studio one parameter workaround

tags/2021-05-28
hogliux 8 years ago
parent
commit
8a93ddc818
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/juce_audio_plugin_client/VST3/juce_VST3_Wrapper.cpp

+ 1
- 1
modules/juce_audio_plugin_client/VST3/juce_VST3_Wrapper.cpp View File

@@ -690,7 +690,7 @@ private:
paramHash &= ~(1 << (sizeof (Vst::ParamID) * 8 - 1));
#endif
return managedParameter ? static_cast<Vst::ParamID> (juceParamID.hashCode())
return managedParameter ? paramHash
: static_cast<Vst::ParamID> (juceParamID.getIntValue());
}


Loading…
Cancel
Save