From e2f76ff8e398d16256509ce9aa2a6a79e919593a Mon Sep 17 00:00:00 2001 From: Andrey Fedorushkov Date: Wed, 1 Feb 2012 15:53:32 +0400 Subject: [PATCH] revert my bug commit 3389 --- common/common_plotDXF_functions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/common_plotDXF_functions.cpp b/common/common_plotDXF_functions.cpp index de2516b094..1d7bdf1dbf 100644 --- a/common/common_plotDXF_functions.cpp +++ b/common/common_plotDXF_functions.cpp @@ -249,7 +249,7 @@ void DXF_PLOTTER::arc( wxPoint centre, int StAngle, int EndAngle, int radius, "0\nARC\n8\n%s\n10\n%d.0\n20\n%d.0\n40\n%d.0\n50\n%d.0\n51\n%d.0\n", TO_UTF8( cname ), centre.x, centre.y, radius, - EndAngle / 10, StAngle / 10 ); + StAngle / 10, EndAngle / 10 ); }