mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
[WIN32K:NTGDI]
- Correctly pass 'planes' and 'bpp' arguments to IntCreateDIBitmap in GreCreateDIBitmapInternal. CID 1250302 svn path=/trunk/; revision=69642
This commit is contained in:
parent
598f3dccc4
commit
1589893f19
1 changed files with 1 additions and 1 deletions
|
@ -1529,7 +1529,7 @@ GreCreateDIBitmapInternal(
|
|||
planes = 0;
|
||||
compression = 0;
|
||||
}
|
||||
Bmp = IntCreateDIBitmap(Dc, cx, cy, bpp, planes, compression, fInit, pjInit, pbmi, iUsage);
|
||||
Bmp = IntCreateDIBitmap(Dc, cx, cy, planes, bpp, compression, fInit, pjInit, pbmi, iUsage);
|
||||
DC_UnlockDc(Dc);
|
||||
|
||||
if(!hDc)
|
||||
|
|
Loading…
Reference in a new issue