Browse Source

Remove of mesh_plan_buffer_line parameter reference (e)

Edward Patel 9 years ago
parent
commit
0d43898a22
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/Marlin_main.cpp

+ 1
- 1
Marlin/Marlin_main.cpp View File

@@ -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);

Loading…
Cancel
Save