소스 검색

Fix bilinear_line_to_destination definition

See #19431
thinkyhead 3 년 전
부모
커밋
ba2939b1dc
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      Marlin/src/feature/bedlevel/abl/abl.cpp

+ 1
- 1
Marlin/src/feature/bedlevel/abl/abl.cpp 파일 보기

@@ -348,7 +348,7 @@ float bilinear_z_offset(const xy_pos_t &raw) {
348 348
    * Prepare a bilinear-leveled linear move on Cartesian,
349 349
    * splitting the move where it crosses grid borders.
350 350
    */
351
-  void bilinear_line_to_destination(const feedRate_t scaled_fr_mm_s, uint16_t x_splits, uint16_t y_splits) {
351
+  void bilinear_line_to_destination(const feedRate_t &scaled_fr_mm_s, uint16_t x_splits, uint16_t y_splits) {
352 352
     // Get current and destination cells for this line
353 353
     xy_int_t c1 { CELL_INDEX(x, current_position.x), CELL_INDEX(y, current_position.y) },
354 354
              c2 { CELL_INDEX(x, destination.x), CELL_INDEX(y, destination.y) };

Loading…
취소
저장