Module: wine Branch: master Commit: 006e2d97b3ca33d6140e24308a43c37b54dfe402 URL: http://source.winehq.org/git/wine.git/?a=commit;h=006e2d97b3ca33d6140e24308a...
Author: Vincent Povirk vincent@codeweavers.com Date: Tue Nov 8 10:18:22 2011 -0600
gdiplus: Fix center point calculation in GdipAddPathPie.
---
dlls/gdiplus/graphicspath.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/gdiplus/graphicspath.c b/dlls/gdiplus/graphicspath.c index 971ab31..120802c 100644 --- a/dlls/gdiplus/graphicspath.c +++ b/dlls/gdiplus/graphicspath.c @@ -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;