summaryrefslogtreecommitdiff
path: root/libs/backends
diff options
context:
space:
mode:
authorBen Loftis <ben@harrisonconsoles.com>2015-02-06 13:57:22 -0600
committerBen Loftis <ben@harrisonconsoles.com>2015-02-06 13:57:22 -0600
commitae09d7132de0af856492f3ae69515ecebb6117e6 (patch)
treed7c671b2d7dc23d246e1107a2630954257e39173 /libs/backends
parentaf174c051910332ef12afde1f3a1845c17ea7624 (diff)
fix 192k rate
Diffstat (limited to 'libs/backends')
-rw-r--r--libs/backends/wavesaudio/wavesapi/devicemanager/WCMRPortAudioDeviceManager.cpp2
1 files changed, 1 insertions, 1 deletions
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 */
};