瀏覽代碼

Changed `if` to `else if`. (#1122)

pull/1126/head
SasLuca 5 年之前
committed by GitHub
父節點
當前提交
680f9d5772
沒有發現已知的金鑰在資料庫的簽署中 GPG 金鑰 ID: 4AEE18F83AFDEB23
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. +1
    -1
      src/textures.c

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

@ -3118,7 +3118,7 @@ static Image LoadDDS(const char *fileName)
} }
} }
} }
if (ddsHeader.ddspf.flags == 0x40 && ddsHeader.ddspf.rgbBitCount == 24) // DDS_RGB, no compressed
else if (ddsHeader.ddspf.flags == 0x40 && ddsHeader.ddspf.rgbBitCount == 24) // DDS_RGB, no compressed
{ {
// NOTE: not sure if this case exists... // NOTE: not sure if this case exists...
image.data = (unsigned char *)RL_MALLOC(image.width*image.height*3*sizeof(unsigned char)); image.data = (unsigned char *)RL_MALLOC(image.width*image.height*3*sizeof(unsigned char));

Loading…
取消
儲存