Skip to content

Commit

Permalink
Fix 3-point middle point (MarlinFirmware#18383)
Browse files Browse the repository at this point in the history
  • Loading branch information
MoellerDi authored and HairingX committed Jun 16, 2021
1 parent 2b71403 commit 8601ad7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/src/module/probe.h
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ class Probe {
#else
points[0].set(min_x(), min_y());
points[1].set(max_x(), min_y());
points[2].set((max_x() - min_x()) / 2, max_y());
points[2].set((min_x() + max_x()) / 2, max_y());
#endif
#endif
}
Expand Down

0 comments on commit 8601ad7

Please sign in to comment.