From 183626a804ee40211121afe3e01c96b365f67a65 Mon Sep 17 00:00:00 2001 From: James Tabor Date: Wed, 7 Sep 2016 03:24:12 +0000 Subject: [PATCH 1/1] [NtGdi] - Remove Path for MoveTo and Polyline. It is not needed. - Fix build. svn path=/trunk/; revision=72604 --- reactos/win32ss/gdi/ntgdi/path.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/win32ss/gdi/ntgdi/path.c b/reactos/win32ss/gdi/ntgdi/path.c index 324cbe00a14..61de877150b 100644 --- a/reactos/win32ss/gdi/ntgdi/path.c +++ b/reactos/win32ss/gdi/ntgdi/path.c @@ -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; -- 2.17.1