From 1589893f19d9241848af5def7edd0a8d30242599 Mon Sep 17 00:00:00 2001 From: Thomas Faber Date: Thu, 22 Oct 2015 11:29:55 +0000 Subject: [PATCH] [WIN32K:NTGDI] - Correctly pass 'planes' and 'bpp' arguments to IntCreateDIBitmap in GreCreateDIBitmapInternal. CID 1250302 svn path=/trunk/; revision=69642 --- reactos/win32ss/gdi/ntgdi/dibobj.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/win32ss/gdi/ntgdi/dibobj.c b/reactos/win32ss/gdi/ntgdi/dibobj.c index a2b9362a78a..06671c5a5fa 100644 --- a/reactos/win32ss/gdi/ntgdi/dibobj.c +++ b/reactos/win32ss/gdi/ntgdi/dibobj.c @@ -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) -- 2.17.1