mirror of
https://github.com/raysan5/raylib.git
synced 2025-09-11 05:48:14 +00:00
Fix signed/unsigned mismatch in rlgl (#4443)
This commit is contained in:
@@ -3408,7 +3408,7 @@ unsigned int rlLoadTextureCubemap(const void *data, int size, int format, int mi
|
|||||||
if (glInternalFormat != 0)
|
if (glInternalFormat != 0)
|
||||||
{
|
{
|
||||||
// Load cubemap faces/mipmaps
|
// 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 mipmapLevel = i/6;
|
||||||
int face = i%6;
|
int face = i%6;
|
||||||
|
Reference in New Issue
Block a user