Browse Source

Nozzle park args

Scott Lahteine 7 years ago
parent
commit
190cd0a111
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      Marlin/src/libs/nozzle.cpp
  2. 1
    1
      Marlin/src/libs/nozzle.h

+ 1
- 1
Marlin/src/libs/nozzle.cpp View File

@@ -162,7 +162,7 @@
162 162
 
163 163
 #if ENABLED(NOZZLE_PARK_FEATURE)
164 164
 
165
-  void Nozzle::park(const uint8_t &z_action, const point_t &park /*= NOZZLE_PARK_POINT*/) {
165
+  void Nozzle::park(const uint8_t z_action, const point_t &park /*= NOZZLE_PARK_POINT*/) {
166 166
     const float fr_xy = NOZZLE_PARK_XY_FEEDRATE;
167 167
     const float fr_z = NOZZLE_PARK_Z_FEEDRATE;
168 168
 

+ 1
- 1
Marlin/src/libs/nozzle.h View File

@@ -86,7 +86,7 @@ class Nozzle {
86 86
 
87 87
   #if ENABLED(NOZZLE_PARK_FEATURE)
88 88
 
89
-    static void park(const uint8_t &z_action, const point_t &park = NOZZLE_PARK_POINT) _Os;
89
+    static void park(const uint8_t z_action, const point_t &park=NOZZLE_PARK_POINT) _Os;
90 90
 
91 91
   #endif
92 92
 };

Loading…
Cancel
Save