浏览代码

Fix signed/unsigned mismatch in rlgl (#4443)

pull/4444/head
Jeffery Myers 3 周前
committed by GitHub
父节点
当前提交
0e1fc33c5c
找不到此签名对应的密钥 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;

正在加载...
取消
保存