Skip to content

Commit

Permalink
Fix signed/unsigned mismatch in rlgl (#4443)
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffM2501 authored Oct 26, 2024
1 parent 7fe5f71 commit 0e1fc33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rlgl.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 0e1fc33

Please sign in to comment.