diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c08de72 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +Builds/ diff --git a/Source/PluginProcessor.cpp b/Source/PluginProcessor.cpp index 88ccfb1..277c6be 100644 --- a/Source/PluginProcessor.cpp +++ b/Source/PluginProcessor.cpp @@ -131,7 +131,7 @@ void ReverbAudioProcessor::processBlock (juce::AudioBuffer& buffer, juce: juce::ScopedNoDenormals noDenormals; auto totalNumInputChannels = getTotalNumInputChannels(); auto totalNumOutputChannels = getTotalNumOutputChannels(); - if (totalNumInputchannels != 2) // Logic will fail AU tests if this isn't here + if (totalNumInputChannels != 2) // Logic will fail AU tests if this isn't here return;