Fix a warning.

This commit is contained in:
David Reid
2026-01-17 09:34:34 +10:00
parent d0b98eee6b
commit 8e6283aa31
+1 -1
View File
@@ -76954,7 +76954,7 @@ static void ma_engine_node_process_pcm_frames__sound(ma_node* pNode, const float
while (totalFramesConverted < pSound->processingCacheCap) { while (totalFramesConverted < pSound->processingCacheCap) {
ma_uint64 framesConverted; ma_uint64 framesConverted;
ma_uint32 framesToConvertThisIteration = pSound->processingCacheCap - totalFramesConverted; ma_uint32 framesToConvertThisIteration = pSound->processingCacheCap - (ma_uint32)totalFramesConverted;
if (framesToConvertThisIteration > tempCapInFrames) { if (framesToConvertThisIteration > tempCapInFrames) {
framesToConvertThisIteration = tempCapInFrames; framesToConvertThisIteration = tempCapInFrames;
} }