Fix compilation errors with examples.

This commit is contained in:
David Reid
2021-07-31 10:22:20 +10:00
parent d371f3553a
commit 369d3b8df7
4 changed files with 8 additions and 6 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ void data_callback(ma_device* pDevice, void* pOutput, const void* pInput, ma_uin
pSineWave = (ma_waveform*)pDevice->pUserData;
MA_ASSERT(pSineWave != NULL);
ma_waveform_read_pcm_frames(pSineWave, pOutput, frameCount);
ma_waveform_read_pcm_frames(pSineWave, pOutput, frameCount, NULL);
(void)pInput; /* Unused. */
}