Browse Source

Fix tilt_mesh_based_on_probed_grid output bug

Scott Lahteine 7 years ago
parent
commit
7326fe1136
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/ubl_G29.cpp

+ 1
- 1
Marlin/ubl_G29.cpp View File

@@ -1665,7 +1665,7 @@
1665 1665
               SERIAL_CHAR('(');
1666 1666
               SERIAL_PROTOCOL_F(LOGICAL_X_POSITION(rx), 7);
1667 1667
               SERIAL_CHAR(',');
1668
-              SERIAL_PROTOCOL_F(LOGICAL_X_POSITION(ry), 7);
1668
+              SERIAL_PROTOCOL_F(LOGICAL_Y_POSITION(ry), 7);
1669 1669
               SERIAL_ECHOPGM(")   measured: ");
1670 1670
               SERIAL_PROTOCOL_F(measured_z, 7);
1671 1671
               SERIAL_ECHOPGM("   correction: ");

Loading…
Cancel
Save