From 6b2ad60d47707597156e4e48619873a4fe4bd599 Mon Sep 17 00:00:00 2001 From: Ashley Sommer Date: Sat, 28 Aug 2021 00:24:13 +1000 Subject: [PATCH] fix mistake in G2/G3 merge accidental duplicated line, when previously hand-merging file versions --- Marlin/src/gcode/motion/G2_G3.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Marlin/src/gcode/motion/G2_G3.cpp b/Marlin/src/gcode/motion/G2_G3.cpp index e51aff92..0b4b885a 100755 --- a/Marlin/src/gcode/motion/G2_G3.cpp +++ b/Marlin/src/gcode/motion/G2_G3.cpp @@ -108,7 +108,6 @@ void plan_arc( abs_angular_travel = ABS(angular_travel); #ifdef MIN_ARC_SEGMENTS - min_segments = CEIL(min_segments * ABS(angular_travel) / RADIANS(360)); min_segments = CEIL(min_segments * abs_angular_travel / RADIANS(360)); NOLESS(min_segments, 1U); #endif