Remove unused condition in 'GenerateMipmaps' function for GRAPHICS_API_OPENGL_11

This commit is contained in:
Elkantor 2020-12-31 09:40:20 +01:00
parent 2f966531a7
commit 7a6444e5a7

View File

@ -4788,8 +4788,8 @@ static int GenerateMipmaps(unsigned char *data, int baseWidth, int baseHeight)
// Count mipmap levels required
while ((width != 1) && (height != 1))
{
if (width != 1) width /= 2;
if (height != 1) height /= 2;
width /= 2;
height /= 2;
TRACELOGD("TEXTURE: Next mipmap size: %i x %i", width, height);