Skip to content

Commit

Permalink
Fix comma/semicolon typo (MarlinFirmware#15420)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexsomesan authored and thinkyhead committed Sep 29, 2019
1 parent 178dcd6 commit 10bbed7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/src/gcode/calibrate/G28.cpp
Expand Up @@ -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;
Expand Down

0 comments on commit 10bbed7

Please sign in to comment.