[GDI32] Fix double cx's in call to HANDLE_METADC in win32ss painting.c (#3137)

Fix copy-paste error.
This commit is contained in:
Doug Lyons 2020-09-06 11:08:03 -05:00 committed by GitHub
parent e1974d21dc
commit 7624a98706
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -469,12 +469,12 @@ BitBlt(
xDest, xDest,
yDest, yDest,
cx, cx,
cx, cy,
hdcSrc, hdcSrc,
xSrc, xSrc,
ySrc, ySrc,
cx, cx,
cx, cy,
dwRop); dwRop);
if ( GdiConvertAndCheckDC(hdcDest) == NULL ) return FALSE; if ( GdiConvertAndCheckDC(hdcDest) == NULL ) return FALSE;