Update examples.

This commit is contained in:
David Reid
2020-02-09 14:54:58 +10:00
parent 7aac694905
commit 86a0e65d02
4 changed files with 24 additions and 11 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ properties. The output buffer in the callback will be null whereas the input buf
void data_callback(ma_device* pDevice, void* pOutput, const void* pInput, ma_uint32 frameCount)
{
drwav* pWav = (drwav*)pDevice->pUserData;
ma_assert(pWav != NULL);
MA_ASSERT(pWav != NULL);
drwav_write_pcm_frames(pWav, frameCount, pInput);