Skip to content

Commit 8d2b478

Browse files
committed
Fix destination channel of copying to temp buffer
1 parent 2dcb98b commit 8d2b478

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Source/Processors/AudioNode/AudioNode.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ void AudioNode::process(AudioSampleBuffer& buffer)
289289
if (samplesToCopyFromOverflowBuffer > 0) // need to re-add samples from backup buffer
290290
{
291291

292-
tempBuffer->addFrom(i, // destination channel
292+
tempBuffer->addFrom(0, // destination channel
293293
0, // destination start sample
294294
*overflowBuffer, // source
295295
0, // source channel

0 commit comments

Comments
 (0)