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

Fixed a bug where an AudioSampleBuffer's isClear flag would remain set even after copying data from another non-zero AudioSampleBuffer

This commit is contained in:
hogliux 2017-04-18 09:42:07 +01:00
parent dace37288b
commit 957ca2d86f

View file

@ -470,6 +470,8 @@ public:
}
else
{
isClear = false;
for (int chan = 0; chan < numChannels; ++chan)
{
Type* const dest = channels[chan];