Browse Source

Tweaked CoreAudio to allow buffer sizes of 2048

tags/2021-05-28
jules 8 years ago
parent
commit
aa5d1d1ec0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/juce_audio_devices/native/juce_mac_CoreAudio.cpp

+ 1
- 1
modules/juce_audio_devices/native/juce_mac_CoreAudio.cpp 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;)
{


Loading…
Cancel
Save