ソースを参照

Fix typo that caused scope issues for DELTA (#6750)

Roxy-3D 7年前
コミット
6f86c46fa6
1個のファイルの変更1行の追加1行の削除
  1. 1
    1
      Marlin/ubl_motion.cpp

+ 1
- 1
Marlin/ubl_motion.cpp ファイルの表示

@@ -600,7 +600,7 @@
600 600
                     y1 = pgm_read_float(&(ubl.mesh_index_to_ypos[cell_yi+1]));  // 64 byte table lookup avoids mul+add
601 601
 
602 602
         float cx = rx - x0,   // cell-relative x
603
-              cy = ry - y0;   // cell-relative y
603
+              cy = ry - y0,   // cell-relative y
604 604
               z_x0y0 = ubl.z_values[cell_xi  ][cell_yi  ],  // z at lower left corner
605 605
               z_x1y0 = ubl.z_values[cell_xi+1][cell_yi  ],  // z at upper left corner
606 606
               z_x0y1 = ubl.z_values[cell_xi  ][cell_yi+1],  // z at lower right corner

読み込み中…
キャンセル
保存