소스 검색

Corrected issue on LoadASTC()

pull/545/head
Ray 7 년 전
committed by GitHub
부모
커밋
bb43755a9d
No known key found for this signature in database GPG 키 ID: 4AEE18F83AFDEB23
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      src/textures.c

+ 1
- 1
src/textures.c 파일 보기

@ -2674,7 +2674,7 @@ static Image LoadASTC(const char *fileName)
fread(image.data, dataSize, 1, astcFile);
if (bpp == 8) image.format = COMPRESSED_ASTC_4x4_RGBA;
else if (bpp == 2) image.format = COMPRESSED_ASTC_4x4_RGBA;
else if (bpp == 2) image.format = COMPRESSED_ASTC_8x8_RGBA;
}
else TraceLog(LOG_WARNING, "[%s] ASTC block size configuration not supported", fileName);
}

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