mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
[WIN32K]
Fix a typo svn path=/trunk/; revision=56466
This commit is contained in:
parent
725ac201be
commit
05e66ae9a9
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue