浏览代码

Remove of mesh_plan_buffer_line parameter reference (e)

Edward Patel 10 年前
父节点
当前提交
0d43898a22
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      Marlin/Marlin_main.cpp

+ 1
- 1
Marlin/Marlin_main.cpp 查看文件

@@ -5307,7 +5307,7 @@ void prepare_move_raw()
5307 5307
 #define MIN(_v1, _v2) (((_v1) < (_v2)) ? (_v1) : (_v2))
5308 5308
 #endif  // ! MIN
5309 5309
 // This function is used to split lines on mesh borders so each segment is only part of one mesh area
5310
-void mesh_plan_buffer_line(float x, float y, float z, const float &e, float feed_rate, const uint8_t &extruder, uint8_t x_splits=0xff, uint8_t y_splits=0xff)
5310
+void mesh_plan_buffer_line(float x, float y, float z, const float e, float feed_rate, const uint8_t &extruder, uint8_t x_splits=0xff, uint8_t y_splits=0xff)
5311 5311
 {
5312 5312
   if (!mbl.active) {
5313 5313
     plan_buffer_line(x, y, z, e, feed_rate, extruder);

正在加载...
取消
保存