Переглянути джерело

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

pull/5598/head
Jeffery Myers 5 дні тому
committed by GitHub
джерело
коміт
7a3cecc010
Не вдалося знайти GPG ключ що відповідає даному підпису Ідентифікатор GPG ключа: B5690EEEBB952194
1 змінених файлів з 1 додано та 1 видалено
  1. +1
    -1
      src/raudio.c

+ 1
- 1
src/raudio.c Переглянути файл

@ -2545,7 +2545,7 @@ static ma_uint32 ReadAudioBufferFramesInMixingFormat(AudioBuffer *audioBuffer, f
}
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

Завантаження…
Відмінити
Зберегти