Fix BABYSTEP_DISPLAY_TOTAL output

This commit is contained in:
Scott Lahteine 2019-10-21 13:38:07 -05:00
parent 7aaa8bc8bd
commit 160c8be191

View file

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