mirror of
https://github.com/mackron/miniaudio.git
synced 2026-04-21 15:56:58 +02:00
Fix a warning.
This commit is contained in:
+1
-1
@@ -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)) {
|
||||
|
||||
Reference in New Issue
Block a user