[NtGdi]
authorJames Tabor <james.tabor@reactos.org>
Wed, 7 Sep 2016 03:24:12 +0000 (03:24 +0000)
committerJames Tabor <james.tabor@reactos.org>
Wed, 7 Sep 2016 03:24:12 +0000 (03:24 +0000)
- Remove Path for MoveTo and Polyline. It is not needed.
- Fix build.

svn path=/trunk/; revision=72604

reactos/win32ss/gdi/ntgdi/path.c

index 324cbe0..61de877 100644 (file)
@@ -1702,7 +1702,7 @@ end:
         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;