Commit 964e352e authored by David Reid's avatar David Reid

Fix a copy/paste error.

parent 89734691
...@@ -46777,11 +46777,11 @@ static ma_result ma_decoder__data_source_on_get_data_format(ma_data_source* pDat ...@@ -46777,11 +46777,11 @@ static ma_result ma_decoder__data_source_on_get_data_format(ma_data_source* pDat
return MA_SUCCESS; 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; 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) static ma_result ma_decoder__data_source_on_get_length(ma_data_source* pDataSource, ma_uint64* pLength)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment