Skip to content

Commit

Permalink
remove debug line
Browse files Browse the repository at this point in the history
  • Loading branch information
ArdenButterfield committed Sep 3, 2023
1 parent 70aadbf commit 43a4e95
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Source/PluginProcessor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,6 @@ void MaimAudioProcessor::processBlock (juce::AudioBuffer<float>& buffer,

for (auto i = std::min(totalNumInputChannels,2); i < totalNumOutputChannels; ++i)
buffer.clear (i, 0, buffer.getNumSamples());
std::cout << totalNumInputChannels << " " << buffer.getNumChannels() << "\n";
if (totalNumInputChannels >= 2 && buffer.getNumChannels() >= 2) {
processBlockStereo(buffer);
} else if (totalNumInputChannels >= 1 && buffer.getNumChannels() >= 1) {
Expand Down

0 comments on commit 43a4e95

Please sign in to comment.