Wrong parameter name in S1ParameterInfo array
Closed this issue · 2 comments
armarpc commented
I just wanted to point out I think there's a small code error in S1DSPKernel.hpp
.
On lines 495-497 it says:
{ compressorMasterMakeupGain, 0.5, 2, 4, "master compressor makeup gain", "master compressor makeup gain", kAudioUnitParameterUnit_Generic, false, NULL},
{ compressorReverbInputMakeupGain, 0.5, 1.88, 4, "reverb input compressor makeup gain", "reverb input compressor makeup gain", kAudioUnitParameterUnit_Generic, false, NULL},
{ compressorMasterMakeupGain, 0.5, 1.88, 4, "reverb wet compressor makeup gain", "reverb wet compressor makeup gain", kAudioUnitParameterUnit_Generic, false, NULL},
I think the last line should read:
{ compressorReverbWetMakeupGain, 0.5, 1.88, 4, "reverb wet compressor makeup gain", "reverb wet compressor makeup gain", kAudioUnitParameterUnit_Generic, false, NULL},
I don't think it actually affects anything, but it would still be good to correct it.
aure commented
Make a Pull Request!