Fix UBL+Delta segmented feedrate

Based on #7948
This commit is contained in:
Scott Lahteine 2017-10-15 16:31:09 -05:00 committed by GitHub
parent a12ab611ae
commit c46189e429

View file

@ -797,7 +797,7 @@ void prepare_move_to_destination() {
if (
#if UBL_DELTA // Also works for CARTESIAN (smaller segments follow mesh more closely)
ubl.prepare_segmented_line_to(destination, feedrate_mm_s)
ubl.prepare_segmented_line_to(destination, MMS_SCALED(feedrate_mm_s))
#elif IS_KINEMATIC
prepare_kinematic_move_to(destination)
#elif ENABLED(DUAL_X_CARRIAGE)