FULLPIPE: Fix stupid bug in RB bitmap rendering

This commit is contained in:
Eugene Sandulenko 2013-07-18 22:14:56 +03:00
parent ade5ad2c74
commit 5add3373fe

View File

@ -440,7 +440,7 @@ void Bitmap::putDib(int x, int y, int32 *palette) {
pixel1 = *srcPtr;
srcPtr++;
pos += (byte)(pixel1 && 0xff);
pos += (byte)(pixel1 & 0xff);
pixel1High = (pixel1 >> 8) & 0xff;
if (pixel1High) {