Procházet zdrojové kódy

Fix a 64 bit to 32 bit int cast warning. (#5594)

pull/5598/head
Jeffery Myers před 1 dnem
odevzdal GitHub
rodič
revize
7a3cecc010
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: B5690EEEBB952194
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      src/raudio.c

+ 1
- 1
src/raudio.c Zobrazit soubor

@ -2545,7 +2545,7 @@ static ma_uint32 ReadAudioBufferFramesInMixingFormat(AudioBuffer *audioBuffer, f
} }
memcpy(audioBuffer->converterResidual, inputBuffer + inputFramesProcessedThisIteration*bpf, (size_t)(residualFrameCount * bpf)); memcpy(audioBuffer->converterResidual, inputBuffer + inputFramesProcessedThisIteration*bpf, (size_t)(residualFrameCount * bpf));
audioBuffer->converterResidualCount = residualFrameCount;
audioBuffer->converterResidualCount = p">(unsigned int)residualFrameCount;
} }
if (inputFramesInInternalFormatCount < estimatedInputFrameCount) break; // Reached the end of the sound if (inputFramesInInternalFormatCount < estimatedInputFrameCount) break; // Reached the end of the sound

Načítá se…
Zrušit
Uložit