Closed armarpc closed 3 years ago
I just wanted to point out I think there's a small code error in S1DSPKernel.hpp.
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.
Make a Pull Request!
I created pull request #169
I just wanted to point out I think there's a small code error in
S1DSPKernel.hpp
.On lines 495-497 it says:
I think the last line should read:
I don't think it actually affects anything, but it would still be good to correct it.