Browse Source

Fix SET_SOFT_ENDSTOP_LOOSE w/out soft endstops (#19734)

Jason Smith 3 years ago
parent
commit
54bdcb4691
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/module/motion.h

+ 1
- 1
Marlin/src/module/motion.h View File

@@ -198,7 +198,7 @@ inline float home_bump_mm(const AxisEnum axis) {
198 198
   extern soft_endstops_t soft_endstop;
199 199
   #define apply_motion_limits(V)        NOOP
200 200
   #define update_software_endstops(...) NOOP
201
-  #define SET_SOFT_ENDSTOP_LOOSE()      NOOP
201
+  #define SET_SOFT_ENDSTOP_LOOSE(V)     NOOP
202 202
 
203 203
 #endif // !HAS_SOFTWARE_ENDSTOPS
204 204
 

Loading…
Cancel
Save