Skip to content

Commit

Permalink
🩹 Fix G33 Delta Sensorless Probing compile (MarlinFirmware#24291)
Browse files Browse the repository at this point in the history
  • Loading branch information
lujios authored and freakydude committed Jun 29, 2022
1 parent 3941067 commit fa370a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/src/gcode/calibrate/G33.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ void GcodeSuite::G33() {
const bool stow_after_each = parser.seen_test('E');

#if HAS_DELTA_SENSORLESS_PROBING
probe.test_sensitivity.set(!parser.seen_test('X'), !parser.seen_test('Y'), !parser.seen_test('Z'));
probe.test_sensitivity = { !parser.seen_test('X'), !parser.seen_test('Y'), !parser.seen_test('Z') };
const bool do_save_offset_adj = parser.seen_test('S');
#endif

Expand Down

0 comments on commit fa370a8

Please sign in to comment.