diff --git a/src/common/image.cpp b/src/common/image.cpp index b55fd18070..469260fb47 100644 --- a/src/common/image.cpp +++ b/src/common/image.cpp @@ -961,7 +961,7 @@ bool wxImage::ConvertAlphaToMask(unsigned char threshold) { for (int x = 0; x < w; x++, imgdata += 3, alphadata++) { - if ((unsigned)(*alphadata) < threshold) + if (*alphadata < threshold) { imgdata[0] = mr; imgdata[1] = mg;