gdiplus: Make LineCapArrowAnchor look more like it does in windows.

This commit is contained in:
Evan Stade 2007-07-09 20:32:29 -07:00 committed by Alexandre Julliard
parent 14c7466c9f
commit 30084db2ce
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ GpStatus WINGDIPAPI GdipAddPathLine2(GpPath *path, GDIPCONST GpPointF *points,
if(!path || !points)
return InvalidParameter;
if(!lengthen_path(path, count + (path->newfigure ? 1 : 0)))
if(!lengthen_path(path, count))
return OutOfMemory;
for(i = 0; i < count; i++){