Skip to content
Snippets Groups Projects
Commit d4f5821c authored by InsanityAutomation's avatar InsanityAutomation Committed by Scott Lahteine
Browse files

Fix 3-point sanity check (#15696)

parent 9aff30da
Branches
Tags
No related merge requests found
...@@ -1559,8 +1559,8 @@ ...@@ -1559,8 +1559,8 @@
#endif // MESH_BED_LEVELING || AUTO_BED_LEVELING_UBL #endif // MESH_BED_LEVELING || AUTO_BED_LEVELING_UBL
#if ALL(PROBE_PT_1_X, PROBE_PT_2_X, PROBE_PT_3_X, PROBE_PT_1_Y, PROBE_PT_2_Y, PROBE_PT_3_Y) #if (defined(PROBE_PT_1_X) && defined(PROBE_PT_2_X) && defined(PROBE_PT_3_X) && defined(PROBE_PT_1_Y) && defined(PROBE_PT_2_Y) && defined(PROBE_PT_3_Y))
#define HAS_FIXED_3POINT; #define HAS_FIXED_3POINT
#endif #endif
#if EITHER(AUTO_BED_LEVELING_UBL, AUTO_BED_LEVELING_3POINT) && IS_KINEMATIC #if EITHER(AUTO_BED_LEVELING_UBL, AUTO_BED_LEVELING_3POINT) && IS_KINEMATIC
... ...
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment