Browse Source

Added some extra sample rate support for ASIO.

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

+ 1
- 1
modules/juce_audio_devices/native/juce_win32_ASIO.cpp View File

@@ -365,7 +365,7 @@ public:
void updateSampleRates()
{
// find a list of sample rates..
const int possibleSampleRates[] = { 44100, 48000, 88200, 96000, 176400, 192000 };
const int possibleSampleRates[] = { 44100, 48000, 88200, 96000, 176400, 192000, 352800, 384000 };
Array<double> newRates;
if (asioObject != nullptr)


Loading…
Cancel
Save