Fix an incorrect check for the decoding seek callback.

This commit is contained in:
David Reid
2026-03-12 06:24:04 +10:00
parent 0041150de0
commit 117366df9a
+1 -1
View File
@@ -62865,7 +62865,7 @@ static ma_result ma_decoder_seek_bytes(ma_decoder* pDecoder, ma_int64 byteOffset
{ {
MA_ASSERT(pDecoder != NULL); MA_ASSERT(pDecoder != NULL);
if (pDecoder->onSeek != NULL) { if (pDecoder->onSeek == NULL) {
return MA_NOT_IMPLEMENTED; return MA_NOT_IMPLEMENTED;
} }