Some tweaks

This commit is contained in:
Ray
2018-11-30 01:57:53 +01:00
parent 874c0910e3
commit 1774260dab
3 changed files with 3 additions and 5 deletions

View File

@@ -1371,7 +1371,7 @@ void ImageDither(Image *image, int rBpp, int gBpp, int bBpp, int aBpp)
return;
}
if ((rBpp+gBpp+bBpp+aBpp) > 16)
if ((rBpp + gBpp + bBpp + aBpp) > 16)
{
TraceLog(LOG_WARNING, "Unsupported dithering bpps (%ibpp), only 16bpp or lower modes supported", (rBpp+gBpp+bBpp+aBpp));
}