Fix a typo

svn path=/trunk/; revision=56466
This commit is contained in:
Timo Kreuzer 2012-05-01 14:59:24 +00:00
parent 725ac201be
commit 05e66ae9a9

View file

@ -33,7 +33,7 @@ VOID DecompressBitmap(SIZEL Size, BYTE *CompressedBits, BYTE *UncompressedBits,
if ((Format == BMF_4RLE) || (Format == BMF_4BPP))
shift = 1;
else if ((Format != BMF_8RLE) || (Format == BMF_8BPP))
else if ((Format != BMF_8RLE) && (Format != BMF_8BPP))
return;
width = ((Size.cx + shift) >> shift);