mirror of
https://github.com/mackron/miniaudio.git
synced 2026-04-22 00:06:59 +02:00
Fix a copy/paste error.
This commit is contained in:
+2
-2
@@ -46777,11 +46777,11 @@ static ma_result ma_decoder__data_source_on_get_data_format(ma_data_source* pDat
|
||||
return MA_SUCCESS;
|
||||
}
|
||||
|
||||
static ma_result ma_decoder__data_source_on_get_cursor(ma_data_source* pDataSource, ma_uint64* pLength)
|
||||
static ma_result ma_decoder__data_source_on_get_cursor(ma_data_source* pDataSource, ma_uint64* pCursor)
|
||||
{
|
||||
ma_decoder* pDecoder = (ma_decoder*)pDataSource;
|
||||
|
||||
return ma_decoder_get_cursor_in_pcm_frames(pDecoder, pLength);
|
||||
return ma_decoder_get_cursor_in_pcm_frames(pDecoder, pCursor);
|
||||
}
|
||||
|
||||
static ma_result ma_decoder__data_source_on_get_length(ma_data_source* pDataSource, ma_uint64* pLength)
|
||||
|
||||
Reference in New Issue
Block a user