From: Ben Loftis Date: Fri, 6 Feb 2015 19:57:22 +0000 (-0600) Subject: fix 192k rate X-Git-Tag: 4.0-rc1~500 X-Git-Url: https://main.carlh.net/gitweb/?a=commitdiff_plain;h=ae09d7132de0af856492f3ae69515ecebb6117e6;p=ardour.git fix 192k rate --- 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 */ };