Corrected bug on web

This commit is contained in:
Ray San 2015-10-26 11:50:28 +01:00
parent d1f099374c
commit fb4105cf8a

View file

@ -1160,11 +1160,11 @@ void ImageColorBrightness(Image *image, int brightness)
void GenTextureMipmaps(Texture2D texture)
{
#if PLATFORM_WEB
int potWidth = GetNextPOT(image->width);
int potHeight = GetNextPOT(image->height);
int potWidth = GetNextPOT(texture.width);
int potHeight = GetNextPOT(texture.height);
// Check if texture is POT
if ((potWidth != image->width) || (potHeight != image->height))
if ((potWidth != texture.width) || (potHeight != texture.height))
{
TraceLog(WARNING, "Limited NPOT support, no mipmaps available for NPOT textures");
}