Browse Source

🩹 Fix G33 Delta Sensorless Probing compile (#24291)

lujios 3 years ago
parent
commit
3b142e531c
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/gcode/calibrate/G33.cpp

+ 1
- 1
Marlin/src/gcode/calibrate/G33.cpp View File

@@ -437,7 +437,7 @@ void GcodeSuite::G33() {
437 437
   const bool stow_after_each = parser.seen_test('E');
438 438
 
439 439
   #if HAS_DELTA_SENSORLESS_PROBING
440
-    probe.test_sensitivity.set(!parser.seen_test('X'), !parser.seen_test('Y'), !parser.seen_test('Z'));
440
+    probe.test_sensitivity = { !parser.seen_test('X'), !parser.seen_test('Y'), !parser.seen_test('Z') };
441 441
     const bool do_save_offset_adj = parser.seen_test('S');
442 442
   #endif
443 443
 

Loading…
Cancel
Save