it'd help if i spelled the variable right

This commit is contained in:
2025-06-15 16:00:15 -04:00
parent fa038afb82
commit abed854d0c
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
Builds/

View File

@ -131,7 +131,7 @@ void ReverbAudioProcessor::processBlock (juce::AudioBuffer<float>& 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;