Skip to content

Commit 0e1fc33

Browse files
authored
Fix signed/unsigned mismatch in rlgl (#4443)
1 parent 7fe5f71 commit 0e1fc33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rlgl.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -3408,7 +3408,7 @@ unsigned int rlLoadTextureCubemap(const void *data, int size, int format, int mi
34083408
if (glInternalFormat != 0)
34093409
{
34103410
// Load cubemap faces/mipmaps
3411-
for (unsigned int i = 0; i < 6*mipmapCount; i++)
3411+
for (int i = 0; i < 6*mipmapCount; i++)
34123412
{
34133413
int mipmapLevel = i/6;
34143414
int face = i%6;

0 commit comments

Comments
 (0)