소스 검색

Fix position_is_reachable bug in waiting

Scott Lahteine 7 년 전
부모
커밋
75a58ee4b8
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      Marlin/src/module/motion.h

+ 1
- 1
Marlin/src/module/motion.h 파일 보기

@@ -260,7 +260,7 @@ void homeaxis(const AxisEnum axis);
260 260
     // This won't work on SCARA since the probe offset rotates with the arm.
261 261
 
262 262
     return position_is_reachable(rx, ry)
263
-        && position_is_reachable(rx - X_PROBE_OFFSET_FROM_EXTRUDER, ry - Y_PROBE_OFFSET_FROM_EXTRUDER);
263
+        && position_is_reachable(rx - (X_PROBE_OFFSET_FROM_EXTRUDER), ry - (Y_PROBE_OFFSET_FROM_EXTRUDER));
264 264
   }
265 265
 
266 266
 #else // CARTESIAN

Loading…
취소
저장