Another documentation fix.

Public issue https://github.com/mackron/miniaudio/issues/385
This commit is contained in:
David Reid
2021-12-30 05:49:02 +10:00
parent 15298ad77f
commit 8ed545ae56
+1 -1
View File
@@ -2453,7 +2453,7 @@ read. If this is less than the requested number of PCM frames it means you've re
return value will be `MA_AT_END` if no samples have been read and the end has been reached.
```c
ma_uint64 framesRead = ma_decoder_read_pcm_frames(pDecoder, pFrames, framesToRead, &framesRead);
ma_result result = ma_decoder_read_pcm_frames(pDecoder, pFrames, framesToRead, &framesRead);
if (framesRead < framesToRead) {
// Reached the end.
}