Skip to content

Commit 183626a

Browse files
committed
[NtGdi]
- Remove Path for MoveTo and Polyline. It is not needed. - Fix build. svn path=/trunk/; revision=72604
1 parent c2a9c48 commit 183626a

File tree

1 file changed

+1
-1
lines changed
  • reactos/win32ss/gdi/ntgdi

1 file changed

+1
-1
lines changed

reactos/win32ss/gdi/ntgdi/path.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1702,7 +1702,7 @@ PATH_StrokePath(
17021702
POINT pt;
17031703
IntGetCurrentPositionEx(dc, &pt);
17041704
IntDPtoLP(dc, &pt, 1);
1705-
IntGdiMoveToEx(dc, pt.x, pt.y, NULL, FALSE);
1705+
IntGdiMoveToEx(dc, pt.x, pt.y, NULL);
17061706
}
17071707
DPRINT("Leave %s, ret=%d\n", __FUNCTION__, ret);
17081708
return ret;

0 commit comments

Comments
 (0)