Browse Source

fix typo

c'n'p ftw :/
pull/1/head
Wurstnase 9 years ago
parent
commit
be9e4ceddc
  1. 4
      Marlin/Marlin_main.cpp

4
Marlin/Marlin_main.cpp

@ -1955,7 +1955,7 @@ inline void gcode_G28() {
// Set the Y position, if included
if (code_seen(axis_codes[Y_AXIS]) && code_has_value()) {
if (code_value_long() != 0) // filter 0
current_position[X_AXIS] = code_value();
current_position[Y_AXIS] = code_value();
}
// Home Z last if homing towards the bed
@ -2044,7 +2044,7 @@ inline void gcode_G28() {
// Set the Z position, if included
if (code_seen(axis_codes[Z_AXIS]) && code_has_value()) {
if (code_value_long() != 0) // filter 0
current_position[X_AXIS] = code_value();
current_position[Z_AXIS] = code_value();
}
#if defined(ENABLE_AUTO_BED_LEVELING) && (Z_HOME_DIR < 0)

Loading…
Cancel
Save