From b9eaded5b7b13d3be0391f3e332c42ccd694923b Mon Sep 17 00:00:00 2001 From: lazarus Date: Thu, 8 Aug 2002 18:21:25 +0000 Subject: [PATCH] MG: removed hint git-svn-id: trunk@1834 - --- lcl/graphicsmath.pp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lcl/graphicsmath.pp b/lcl/graphicsmath.pp index ff6b17a0d0..4a32b1c00c 100644 --- a/lcl/graphicsmath.pp +++ b/lcl/graphicsmath.pp @@ -419,11 +419,10 @@ Procedure BezierArcPoints(X, Y, Width, Height : Longint; Angle1, Angle2, Rotation : Extended; var Points : PPoint; var Count : Longint); var B : TBezier; - I : Integer; begin If ABS(Angle2) > 90*16 then begin - PolyBezierArcPoints(X, Y, Width, Height, Angle1, Angle2, Rotation, -Points, Count); + PolyBezierArcPoints(X, Y, Width, Height, Angle1, Angle2, Rotation, Points, + Count); Exit; end; If Angle2 = 0 then