mirror of
https://github.com/thestk/stk
synced 2026-02-04 08:36:16 +00:00
Add missing apostrophe and parentheses
And capitalize and add a period at the end of the next sentence.
This commit is contained in:
@@ -3161,8 +3161,8 @@ bool RtApiAsio :: probeDeviceOpen( unsigned int device, StreamMode mode, unsigne
|
|||||||
result = ASIOCreateBuffers( handle->bufferInfos, nChannels, stream_.bufferSize, &asioCallbacks );
|
result = ASIOCreateBuffers( handle->bufferInfos, nChannels, stream_.bufferSize, &asioCallbacks );
|
||||||
if ( result != ASE_OK ) {
|
if ( result != ASE_OK ) {
|
||||||
// Standard method failed. This can happen with strict/misbehaving drivers that return valid buffer size ranges
|
// 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
|
// 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
|
// In that case, let's be naïve and try that instead.
|
||||||
*bufferSize = preferSize;
|
*bufferSize = preferSize;
|
||||||
stream_.bufferSize = *bufferSize;
|
stream_.bufferSize = *bufferSize;
|
||||||
result = ASIOCreateBuffers( handle->bufferInfos, nChannels, stream_.bufferSize, &asioCallbacks );
|
result = ASIOCreateBuffers( handle->bufferInfos, nChannels, stream_.bufferSize, &asioCallbacks );
|
||||||
|
|||||||
Reference in New Issue
Block a user