Browse Source

Prevent park_point compile error

Scott Lahteine 4 years ago
parent
commit
6913a4dfa8
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/feature/probe_temp_compensation.h

+ 1
- 1
Marlin/src/feature/probe_temp_compensation.h View File

@@ -57,7 +57,7 @@ class ProbeTempComp {
57 57
     static const temp_calib_t cali_info[TSI_COUNT];
58 58
 
59 59
     // Where to park nozzle to wait for probe cooldown
60
-    static constexpr xyz_pos_t park_point = { PTC_PARK_POS_X, PTC_PARK_POS_Y, PTC_PARK_POS_Z };
60
+    static constexpr xyz_pos_t park_point = xyz_pos_t({ PTC_PARK_POS_X, PTC_PARK_POS_Y, PTC_PARK_POS_Z });
61 61
 
62 62
     static constexpr int  max_bed_temp         = PTC_MAX_BED_TEMP,  // Max temperature to avoid heating errors
63 63
 

Loading…
Cancel
Save