Browse Source

Fix mbl_mesh_report

MagoKimbra 8 years ago
parent
commit
7d2e637867
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/Marlin_main.cpp

+ 1
- 1
Marlin/Marlin_main.cpp View File

@@ -3769,7 +3769,7 @@ inline void gcode_G28() {
3769 3769
     SERIAL_PROTOCOLPGM("Z offset: "); SERIAL_PROTOCOL_F(mbl.z_offset, 5);
3770 3770
     SERIAL_PROTOCOLLNPGM("\nMeasured points:");
3771 3771
     print_2d_array(GRID_MAX_POINTS_X, GRID_MAX_POINTS_Y, 5,
3772
-      [](const uint8_t ix, const uint8_t iy) { return mbl.z_values[ix][iy]; }
3772
+      [](const uint8_t ix, const uint8_t iy) { return mbl.z_values[iy][ix]; }
3773 3773
     );
3774 3774
   }
3775 3775
 

Loading…
Cancel
Save