From c9bda932fe70ec92b296caa150a0ae2a21343139 Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Tue, 23 Jan 2018 18:50:37 -0600 Subject: [PATCH] Patch M114 D logical output --- Marlin/src/gcode/host/M114.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Marlin/src/gcode/host/M114.cpp b/Marlin/src/gcode/host/M114.cpp index 2f176a5268..5ca83eedaa 100644 --- a/Marlin/src/gcode/host/M114.cpp +++ b/Marlin/src/gcode/host/M114.cpp @@ -51,7 +51,7 @@ LOGICAL_Y_POSITION(current_position[Y_AXIS]), LOGICAL_Z_POSITION(current_position[Z_AXIS]) }; - report_xyze(logical); + report_xyz(logical); SERIAL_PROTOCOLPGM("Raw: "); report_xyz(current_position);