Browse Source

Update ubl_motion.cpp

Restore necessary and needed loop termination logic.
pull/1/head
Roxy-3D 7 years ago
committed by GitHub
parent
commit
23635c2b64
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      Marlin/src/feature/bedlevel/ubl/ubl_motion.cpp

2
Marlin/src/feature/bedlevel/ubl/ubl_motion.cpp

@ -347,7 +347,7 @@
xi_cnt--;
}
//if (xi_cnt < 0 || yi_cnt < 0) break; // Too far! Exit the loop and go to FINAL_MOVE
if (xi_cnt < 0 || yi_cnt < 0) break; // Too far! Exit the loop and go to FINAL_MOVE
}
if (g26_debug_flag)

Loading…
Cancel
Save