1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-02 03:20:06 +00:00

Tweaked CoreAudio to allow buffer sizes of 2048

This commit is contained in:
jules 2016-11-08 09:35:50 +00:00
parent bfd5605dda
commit aa5d1d1ec0

View file

@ -332,7 +332,7 @@ public:
{
newBufferSizes.add ((int) (ranges[0].mMinimum + 15) & ~15);
for (int i = 32; i < 2048; i += 32)
for (int i = 32; i <= 2048; i += 32)
{
for (int j = size / (int) sizeof (AudioValueRange); --j >= 0;)
{