diff options
| author | Ryan Schmidt <git@ryandesign.com> | 2018-08-25 21:13:54 -0500 |
|---|---|---|
| committer | Ryan Schmidt <git@ryandesign.com> | 2018-08-25 21:13:54 -0500 |
| commit | aa16de39c6538aa1838208bdb72024e2cd079487 (patch) | |
| tree | 63ead0ff239a8de1ee8fd1e3947989fb37b1591d /RtAudio.cpp | |
| parent | 9c3387e5c1eaf9625c8f64135a4eb53c0e4902d3 (diff) | |
Add missing apostrophe and parentheses
And capitalize and add a period at the end of the next sentence.
Diffstat (limited to 'RtAudio.cpp')
| -rw-r--r-- | RtAudio.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/RtAudio.cpp b/RtAudio.cpp index 6d82ac1..b7fa8e8 100644 --- a/RtAudio.cpp +++ b/RtAudio.cpp @@ -3165,8 +3165,8 @@ bool RtApiAsio :: probeDeviceOpen( unsigned int device, StreamMode mode, unsigne result = ASIOCreateBuffers( handle->bufferInfos, nChannels, stream_.bufferSize, &asioCallbacks ); if ( result != ASE_OK ) { // Standard method failed. This can happen with strict/misbehaving drivers that return valid buffer size ranges - // but only accept the preferred buffer size as parameter for ASIOCreateBuffers. e.g. Creatives ASIO driver - // in that case, let's be naïve and try that instead + // but only accept the preferred buffer size as parameter for ASIOCreateBuffers (e.g. Creative's ASIO driver). + // In that case, let's be naïve and try that instead. *bufferSize = preferSize; stream_.bufferSize = *bufferSize; result = ASIOCreateBuffers( handle->bufferInfos, nChannels, stream_.bufferSize, &asioCallbacks ); |
