From a75a25cd7ca6af30da92b1b6e17d2e5327cb07df Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Thu, 27 Feb 2020 06:44:20 -0600 Subject: [PATCH] Replace direct call to G28(true) --- Marlin/src/gcode/calibrate/G76_M871.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Marlin/src/gcode/calibrate/G76_M871.cpp b/Marlin/src/gcode/calibrate/G76_M871.cpp index ef1a18e112..2471d53e04 100644 --- a/Marlin/src/gcode/calibrate/G76_M871.cpp +++ b/Marlin/src/gcode/calibrate/G76_M871.cpp @@ -121,7 +121,7 @@ void GcodeSuite::G76() { return; } - G28(true); + process_subcommands_now_P(PSTR("G28")); } /******************************************