AU mono to stereo bypass
Closed this issue · 0 comments
baconpaul commented
MTorn wrote: ↑Thu Jun 13, 2024 9:49 am
One possible bug - when running it as a Mono -> Stereo AU in Logic, clicking the bypass button only forwards the dry signal in the left channel.
oh i see why. i'll add an issue and try and fix before the wkend. thanks.
if (bypassParam->get())
{
for (int ch = getMainBusNumInputChannels(); ch < getTotalNumOutputChannels(); ++ch)
buffer.clear(ch, 0, buffer.getNumSamples());
return;
}