From 10bbed7f69b2d36081e5d09f7c55492e4b0bcde9 Mon Sep 17 00:00:00 2001 From: Alex Somesan Date: Sun, 29 Sep 2019 23:50:53 +0200 Subject: [PATCH] Fix comma/semicolon typo (#15420) --- Marlin/src/gcode/calibrate/G28.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Marlin/src/gcode/calibrate/G28.cpp b/Marlin/src/gcode/calibrate/G28.cpp index 6fda4e84d..7f1fb7705 100644 --- a/Marlin/src/gcode/calibrate/G28.cpp +++ b/Marlin/src/gcode/calibrate/G28.cpp @@ -231,7 +231,7 @@ void GcodeSuite::G28(const bool always_home_all) { #if ENABLED(IMPROVE_HOMING_RELIABILITY) slow_homing_t slow_homing{0}; - slow_homing.acceleration.set(planner.settings.max_acceleration_mm_per_s2[X_AXIS]; + slow_homing.acceleration.set(planner.settings.max_acceleration_mm_per_s2[X_AXIS], planner.settings.max_acceleration_mm_per_s2[Y_AXIS]); planner.settings.max_acceleration_mm_per_s2[X_AXIS] = 100; planner.settings.max_acceleration_mm_per_s2[Y_AXIS] = 100;