gdiplus: Fix center point calculation in GdipAddPathPie.

This commit is contained in:
Vincent Povirk 2011-11-08 10:18:22 -06:00 committed by Alexandre Julliard
parent c5db60200f
commit 006e2d97b3

View file

@ -744,7 +744,7 @@ GpStatus WINGDIPAPI GdipAddPathPie(GpPath *path, REAL x, REAL y, REAL width, REA
arc2polybezier(ptf, x, y, width, height, startAngle, sweepAngle);
status = GdipAddPathLine(path, (width - x)/2, (height - y)/2, ptf[0].X, ptf[0].Y);
status = GdipAddPathLine(path, x + width/2, y + height/2, ptf[0].X, ptf[0].Y);
if(status != Ok){
GdipFree(ptf);
return status;