瀏覽代碼

Corrected bug on PVR textures loading

pull/23/head
Gatonevermind 9 年之前
父節點
當前提交
4e4b6bef21
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. +1
    -1
      src/textures.c

+ 1
- 1
src/textures.c 查看文件

@ -1105,7 +1105,7 @@ static Image LoadPVR(const char *fileName)
{
image.width = header.width;
image.height = header.height;
image.mipmaps = header.numMipmaps + 1;
image.mipmaps = header.numMipmaps;
// Check data format
if (((header.channels[0] == 'l') && (header.channels[1] == 0)) && (header.channelDepth[0] == 8)) image.format = UNCOMPRESSED_GRAYSCALE;

Loading…
取消
儲存