Browse Source

AAX parameter fix.

tags/2021-05-28
jules 13 years ago
parent
commit
52be86bea4
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      modules/juce_audio_plugin_client/AAX/juce_AAX_Wrapper.cpp

+ 2
- 2
modules/juce_audio_plugin_client/AAX/juce_AAX_Wrapper.cpp View File

@@ -602,12 +602,12 @@ struct AAXClasses
AAX_IParameter* parameter
= new AAX_CParameter<float> (IndexAsParamID (parameterIndex),
audioProcessor.getParameterName (parameterIndex).toUTF8().getAddress(),
0.0f,
audioProcessor.getParameter (parameterIndex),
AAX_CLinearTaperDelegate<float, 0>(),
AAX_CNumberDisplayDelegate<float, 3>(),
true);
parameter->SetNumberOfSteps (0x7FFFFFFF);
parameter->SetNumberOfSteps (0x7fffffff);
parameter->SetType (AAX_eParameterType_Continuous);
mParameterManager.AddParameter (parameter);
}


Loading…
Cancel
Save