Browse Source

Fix report_current_position

Thanks @RowanMeara!
Scott Lahteine 7 years ago
parent
commit
5926159890
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/Marlin_main.cpp

+ 1
- 1
Marlin/Marlin_main.cpp View File

@@ -8463,7 +8463,7 @@ void report_current_position() {
8463 8463
   SERIAL_PROTOCOLPGM("X:");
8464 8464
   SERIAL_PROTOCOL(LOGICAL_X_POSITION(current_position[X_AXIS]));
8465 8465
   SERIAL_PROTOCOLPGM(" Y:");
8466
-  SERIAL_PROTOCOL(LOGICAL_X_POSITION(current_position[Y_AXIS]));
8466
+  SERIAL_PROTOCOL(LOGICAL_Y_POSITION(current_position[Y_AXIS]));
8467 8467
   SERIAL_PROTOCOLPGM(" Z:");
8468 8468
   SERIAL_PROTOCOL(LOGICAL_Z_POSITION(current_position[Z_AXIS]));
8469 8469
   SERIAL_PROTOCOLPGM(" E:");

Loading…
Cancel
Save