Skip to content
Snippets Groups Projects
Commit b398479d authored by Peter Ganten's avatar Peter Ganten Committed by Alexandre Julliard
Browse files

Small wing enhancement.

parent 5ca2ec42
No related branches found
No related tags found
No related merge requests found
......@@ -152,9 +152,13 @@ BOOL16 WINAPI WinGStretchBlt16(HDC16 destDC, INT16 xDest, INT16 yDest,
HDC16 srcDC, INT16 xSrc, INT16 ySrc,
INT16 widSrc, INT16 heiSrc)
{
BOOL16 retval;
TRACE("(%d,%d,...)\n", destDC, srcDC);
return StretchBlt16(destDC, xDest, yDest, widDest, heiDest, srcDC,
SetStretchBltMode16 ( destDC, COLORONCOLOR );
retval=StretchBlt16(destDC, xDest, yDest, widDest, heiDest, srcDC,
xSrc, ySrc, widSrc, heiSrc, SRCCOPY);
SetStretchBltMode16 ( destDC, BLACKONWHITE );
return retval;
}
/***********************************************************************
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment