Fix low level API code example in README

This commit is contained in:
Manuel Graf
2022-08-21 16:25:15 +02:00
committed by David Reid
parent 3d4ab9d9f0
commit 5a5f4f0706
+1 -1
View File
@@ -73,7 +73,7 @@ void data_callback(ma_device* pDevice, void* pOutput, const void* pInput, ma_uin
return;
}
ma_decoder_read_pcm_frames(pDecoder, pOutput, frameCount);
ma_decoder_read_pcm_frames(pDecoder, pOutput, (ma_uint64)frameCount, NULL);
(void)pInput;
}