소스 검색

Fix signed/unsigned mismatch in rlgl (#4443)

pull/4444/head
Jeffery Myers 3 주 전
committed by GitHub
부모
커밋
0e1fc33c5c
No known key found for this signature in database GPG 키 ID: B5690EEEBB952194
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      src/rlgl.h

+ 1
- 1
src/rlgl.h 파일 보기

@ -3408,7 +3408,7 @@ unsigned int rlLoadTextureCubemap(const void *data, int size, int format, int mi
if (glInternalFormat != 0)
{
// Load cubemap faces/mipmaps
for (unsigned int i = 0; i < 6*mipmapCount; i++)
for (int i = 0; i < 6*mipmapCount; i++)
{
int mipmapLevel = i/6;
int face = i%6;

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