mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 19:26:32 +00:00
[WIN32K]
- revert part of -r47735, as it's not the good fix (tm) svn path=/branches/reactos-yarotows/; revision=47789
This commit is contained in:
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user