소스 검색

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

pull/5598/head
Jeffery Myers 4 일 전
committed by GitHub
부모
커밋
7a3cecc010
No known key found for this signature in database GPG 키 ID: 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

불러오는 중...
취소
저장