From ae09d7132de0af856492f3ae69515ecebb6117e6 Mon Sep 17 00:00:00 2001 From: Ben Loftis Date: Fri, 6 Feb 2015 13:57:22 -0600 Subject: [PATCH] fix 192k rate --- .../wavesapi/devicemanager/WCMRPortAudioDeviceManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/backends/wavesaudio/wavesapi/devicemanager/WCMRPortAudioDeviceManager.cpp b/libs/backends/wavesaudio/wavesapi/devicemanager/WCMRPortAudioDeviceManager.cpp index aaf64d6d02..3eeee722e1 100644 --- a/libs/backends/wavesaudio/wavesapi/devicemanager/WCMRPortAudioDeviceManager.cpp +++ b/libs/backends/wavesaudio/wavesapi/devicemanager/WCMRPortAudioDeviceManager.cpp @@ -28,7 +28,7 @@ using namespace wvNS; ///< Supported Sample rates static const double gAllSampleRates[] = { - 44100.0, 48000.0, 88200.0, 96000.0, 176400.0, 192000.0 -1 /* negative terminated list */ + 44100.0, 48000.0, 88200.0, 96000.0, 176400.0, 192000.0, -1 /* negative terminated list */ };