Explicitly stated a bit masking to please VC.NET2003 runtime small types conversion checks.

svn-id: r9671
This commit is contained in:
Bertrand Augereau 2003-08-13 22:40:57 +00:00
parent 0563d61106
commit 93ca5cb3af

View File

@ -1767,7 +1767,7 @@ void Gdi::unkDecodeA(byte *dst, const byte *src, int height) {
cl -= 3; cl -= 3;
bits >>= 3; bits >>= 3;
if (incm) { if (incm) {
color += incm; color = (byte)((color+incm)&0xFF);
} else { } else {
FILL_BITS; FILL_BITS;
reps = bits & 0xFF; reps = bits & 0xFF;