windowscodecs: Fix typo in 2 bpp conversion.

Signed-off-by: Huw Davies <huw@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Huw Davies 2016-12-09 14:38:04 +00:00 committed by Alexandre Julliard
parent 78983d9fcd
commit a531ade2fd
1 changed files with 1 additions and 1 deletions

View File

@ -257,7 +257,7 @@ static HRESULT copypixels_to_32bppBGRA(struct FormatConverter *This, const WICRe
*dstpixel++ = colors[srcval>>6]; *dstpixel++ = colors[srcval>>6];
if (x+1 < prc->Width) *dstpixel++ = colors[srcval>>4&0x3]; if (x+1 < prc->Width) *dstpixel++ = colors[srcval>>4&0x3];
if (x+2 < prc->Width) *dstpixel++ = colors[srcval>>2&0x3]; if (x+2 < prc->Width) *dstpixel++ = colors[srcval>>2&0x3];
if (x+1 < prc->Width) *dstpixel++ = colors[srcval&0x3]; if (x+3 < prc->Width) *dstpixel++ = colors[srcval&0x3];
} }
srcrow += srcstride; srcrow += srcstride;
dstrow += cbStride; dstrow += cbStride;