Browse Source

Fix BABYSTEP_DISPLAY_TOTAL output

Scott Lahteine 4 years ago
parent
commit
160c8be191
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/gcode/motion/M290.cpp

+ 1
- 1
Marlin/src/gcode/motion/M290.cpp View File

@@ -124,7 +124,7 @@ void GcodeSuite::M290() {
124 124
           " X", babystep.axis_total[X_AXIS],
125 125
           " Y", babystep.axis_total[Y_AXIS],
126 126
         #endif
127
-        " Z", babystep.axis_total[Z_AXIS]
127
+        " Z", babystep.axis_total[BS_TODO_AXIS(Z_AXIS)]
128 128
       );
129 129
     }
130 130
     #endif

Loading…
Cancel
Save