fixes logic AU test failure
This commit is contained in:
@ -131,6 +131,8 @@ void ReverbAudioProcessor::processBlock (juce::AudioBuffer<float>& buffer, juce:
|
|||||||
juce::ScopedNoDenormals noDenormals;
|
juce::ScopedNoDenormals noDenormals;
|
||||||
auto totalNumInputChannels = getTotalNumInputChannels();
|
auto totalNumInputChannels = getTotalNumInputChannels();
|
||||||
auto totalNumOutputChannels = getTotalNumOutputChannels();
|
auto totalNumOutputChannels = getTotalNumOutputChannels();
|
||||||
|
if (totalNumInputchannels != 2) // Logic will fail AU tests if this isn't here
|
||||||
|
return;
|
||||||
|
|
||||||
|
|
||||||
// In case we have more outputs than inputs, this code clears any output
|
// In case we have more outputs than inputs, this code clears any output
|
||||||
|
Reference in New Issue
Block a user