Browse Source

Merge pull request #775 from MissionSt/lang-fix/bed

Use language.h for "bed"
nothinman 10 years ago
parent
commit
3b193d1b5f
1 changed files with 4 additions and 2 deletions
  1. 4
    2
      Marlin/Marlin_main.cpp

+ 4
- 2
Marlin/Marlin_main.cpp View File

@@ -989,7 +989,8 @@ static float probe_pt(float x, float y, float z_before) {
989 989
   float measured_z = current_position[Z_AXIS];
990 990
   retract_z_probe();
991 991
 
992
-  SERIAL_PROTOCOLPGM("Bed x: ");
992
+  SERIAL_PROTOCOLPGM(MSG_BED);
993
+  SERIAL_PROTOCOLPGM(" x: ");
993 994
   SERIAL_PROTOCOL(x);
994 995
   SERIAL_PROTOCOLPGM(" y: ");
995 996
   SERIAL_PROTOCOL(y);
@@ -1520,7 +1521,8 @@ void process_commands()
1520 1521
             feedrate = homing_feedrate[Z_AXIS];
1521 1522
 
1522 1523
             run_z_probe();
1523
-            SERIAL_PROTOCOLPGM("Bed Position X: ");
1524
+            SERIAL_PROTOCOLPGM(MSG_BED);
1525
+            SERIAL_PROTOCOLPGM(" X: ");
1524 1526
             SERIAL_PROTOCOL(current_position[X_AXIS]);
1525 1527
             SERIAL_PROTOCOLPGM(" Y: ");
1526 1528
             SERIAL_PROTOCOL(current_position[Y_AXIS]);

Loading…
Cancel
Save