Skip to content

Commit addd10b

Browse files
committed
Fix resizing of tempBuffer in AudioNode
1 parent 9aa6747 commit addd10b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Source/Processors/AudioNode/AudioNode.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,8 +197,8 @@ void AudioNode::recreateBuffers()
197197

198198
}
199199

200-
// tempBuffer->setSize(getNumInputs(), 4096);
201-
tempBuffer->setSize(1, 4096);
200+
tempBuffer->setSize(getNumInputs(), 4096);
201+
// tempBuffer->setSize(1, 4096);
202202
}
203203

204204
bool AudioNode::enable()

0 commit comments

Comments
 (0)