diff options
| author | garyscavone <garyscavone@users.noreply.github.com> | 2019-06-27 11:01:19 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-06-27 11:01:19 -0400 |
| commit | 241e666f546364dbc471d7ff2aa381f32d1d9885 (patch) | |
| tree | b62bc7f582698bf36099f8c845f08a778d836a16 | |
| parent | 97e780e3ab77be795bb7ff73286865473314c347 (diff) | |
| parent | 40c1649ede9dd712cafd2c6831771bdec9ccfe35 (diff) | |
Merge pull request #207 from mcwissink/capture-flags-wasapi
Change type of captureFlags to DWORD
| -rw-r--r-- | RtAudio.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/RtAudio.cpp b/RtAudio.cpp index defb800..e0713a0 100644 --- a/RtAudio.cpp +++ b/RtAudio.cpp @@ -4941,7 +4941,7 @@ void RtApiWasapi::wasapiThread() // declare local stream variables RtAudioCallback callback = ( RtAudioCallback ) stream_.callbackInfo.callback; BYTE* streamBuffer = NULL; - unsigned long captureFlags = 0; + DWORD captureFlags = 0; unsigned int bufferFrameCount = 0; unsigned int numFramesPadding = 0; unsigned int convBufferSize = 0; |
