ソースを参照

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;

読み込み中…
キャンセル
保存