Skip to content

Commit

Permalink
Fix leveling "Point n of 3" message (MarlinFirmware#18639)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lord-Quake authored and vgadreau committed Dec 9, 2020
1 parent 126620c commit 243c900
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Marlin/src/gcode/bedlevel/abl/G29.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -685,8 +685,8 @@ G29_TYPE GcodeSuite::G29() {
// Probe at 3 arbitrary points

LOOP_L_N(i, 3) {
if (verbose_level) SERIAL_ECHOLNPAIR("Probing point ", int(i), "/3.");
TERN_(HAS_DISPLAY, ui.status_printf_P(0, PSTR(S_FMT " %i/3"), GET_TEXT(MSG_PROBING_MESH), int(i)));
if (verbose_level) SERIAL_ECHOLNPAIR("Probing point ", int(i + 1), "/3.");
TERN_(HAS_DISPLAY, ui.status_printf_P(0, PSTR(S_FMT " %i/3"), GET_TEXT(MSG_PROBING_MESH), int(i + 1)));

// Retain the last probe position
probePos = points[i];
Expand Down

0 comments on commit 243c900

Please sign in to comment.