Commit 484a5649 authored by David Reid's avatar David Reid

Fix a warning.

parent b12959f1
......@@ -92875,7 +92875,7 @@ static ma_bool32 ma_dr_mp3_init_internal(ma_dr_mp3* pMP3, ma_dr_mp3_read_proc on
}
pMP3->streamLength = (ma_uint64)streamLen;
if (pMP3->memory.pData != NULL) {
pMP3->memory.dataSize = pMP3->streamLength;
pMP3->memory.dataSize = (size_t)pMP3->streamLength;
}
} else {
if (!onSeek(pUserData, 0, ma_dr_mp3_seek_origin_start)) {
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