1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-21 01:24:21 +00:00

AudioSampleBuffer operator= isClear bugfix.

This commit is contained in:
jules 2014-06-22 19:19:48 +01:00
parent fd21b02845
commit 4d2261c0f6

View file

@ -163,6 +163,8 @@ AudioSampleBuffer& AudioSampleBuffer::operator= (const AudioSampleBuffer& other)
}
else
{
isClear = false;
for (int i = 0; i < numChannels; ++i)
FloatVectorOperations::copy (channels[i], other.channels[i], size);
}