Fix spelling

PROBABLE ->PROBEABLE
This is follow-up to #3069?
This commit is contained in:
esenapaj
2016-03-25 02:13:37 +09:00
parent c80e5aca30
commit 89a845659a
7 changed files with 27 additions and 27 deletions

View File

@ -3079,7 +3079,7 @@ inline void gcode_G28() {
#if ENABLED(DELTA)
// Avoid probing the corners (outside the round or hexagon print surface) on a delta printer.
float distance_from_center = sqrt(xProbe * xProbe + yProbe * yProbe);
if (distance_from_center > DELTA_PROBABLE_RADIUS) continue;
if (distance_from_center > DELTA_PROBEABLE_RADIUS) continue;
#endif //DELTA
ProbeAction act;