mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-01-06 01:34:39 +00:00
🩹 Fix G33 Delta Sensorless Probing compile (#24291)
This commit is contained in:
parent
69a1c539fb
commit
799b8fccaf
1 changed files with 1 additions and 1 deletions
|
@ -437,7 +437,7 @@ void GcodeSuite::G33() {
|
||||||
const bool stow_after_each = parser.seen_test('E');
|
const bool stow_after_each = parser.seen_test('E');
|
||||||
|
|
||||||
#if HAS_DELTA_SENSORLESS_PROBING
|
#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');
|
const bool do_save_offset_adj = parser.seen_test('S');
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue