Author: jimtabor Date: Wed Sep 7 03:24:12 2016 New Revision: 72604
URL: http://svn.reactos.org/svn/reactos?rev=72604&view=rev Log: [NtGdi] - Remove Path for MoveTo and Polyline. It is not needed. - Fix build.
Modified: trunk/reactos/win32ss/gdi/ntgdi/path.c
Modified: trunk/reactos/win32ss/gdi/ntgdi/path.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/win32ss/gdi/ntgdi/path.c?re... ============================================================================== --- trunk/reactos/win32ss/gdi/ntgdi/path.c [iso-8859-1] (original) +++ trunk/reactos/win32ss/gdi/ntgdi/path.c [iso-8859-1] Wed Sep 7 03:24:12 2016 @@ -1702,7 +1702,7 @@ POINT pt; IntGetCurrentPositionEx(dc, &pt); IntDPtoLP(dc, &pt, 1); - IntGdiMoveToEx(dc, pt.x, pt.y, NULL, FALSE); + IntGdiMoveToEx(dc, pt.x, pt.y, NULL); } DPRINT("Leave %s, ret=%d\n", __FUNCTION__, ret); return ret;