From abed854d0cec2836818e3ac0af832710ebd25a68 Mon Sep 17 00:00:00 2001 From: Nathan Singer Date: Sun, 15 Jun 2025 16:00:15 -0400 Subject: [PATCH] it'd help if i spelled the variable right --- .gitignore | 1 + Source/PluginProcessor.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 .gitignore 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;