Browse Source

Merge pull request #4503 from AnHardt/fix-retract

Correct typo in retract()
Scott Lahteine 8 years ago
parent
commit
0f030aface
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/Marlin_main.cpp

+ 1
- 1
Marlin/Marlin_main.cpp View File

@@ -2525,7 +2525,7 @@ static void homeaxis(AxisEnum axis) {
2525 2525
         SYNC_PLAN_POSITION_KINEMATIC();
2526 2526
       }
2527 2527
 
2528
-      feedrate_mm_m = MMM_TO_MMS(retract_recover_feedrate_mm_s);
2528
+      feedrate_mm_m = MMS_TO_MMM(retract_recover_feedrate_mm_s);
2529 2529
       float move_e = swapping ? retract_length_swap + retract_recover_length_swap : retract_length + retract_recover_length;
2530 2530
       current_position[E_AXIS] -= move_e / volumetric_multiplier[active_extruder];
2531 2531
       sync_plan_position_e();

Loading…
Cancel
Save