- revert part of -r47735, as it's not the good fix (tm)

svn path=/branches/reactos-yarotows/; revision=47789
This commit is contained in:
Jérôme Gardou 2010-06-16 18:50:55 +00:00
parent 5f2d67cb35
commit bb23cc5ca6

View file

@ -203,12 +203,12 @@ SURFACE_bSetBitmapBits(
if (ulWidth)
{
/* Align the width (Windows compatibility) */
ulWidth = ((((ulWidth << 3) / cBitsPixel) * cBitsPixel + 15) & ~15) >> 3;
ulWidth = ((((ulWidth << 3) / cBitsPixel) * cBitsPixel + 31) & ~31) >> 3;
}
else
{
/* Calculate width from the bitmap width in pixels */
ulWidth = ((pso->sizlBitmap.cx * cBitsPixel + 15) & ~15) >> 3;
ulWidth = ((pso->sizlBitmap.cx * cBitsPixel + 31) & ~31) >> 3;
}
/* Calculate the bitmap size in bytes */