mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-01-22 17:52:57 +00:00
🎨 Misc. code format (2)
This commit is contained in:
parent
56e2b60e6d
commit
7cd56a57f9
2 changed files with 3 additions and 3 deletions
|
@ -946,7 +946,7 @@ float Probe::probe_at_point(
|
|||
const bool sanity_check, // = true
|
||||
const_float_t z_min_point, // = Z_PROBE_LOW_POINT
|
||||
const_float_t z_clearance, // = Z_TWEEN_SAFE_CLEARANCE
|
||||
const bool raise_after_is_relative // = false
|
||||
const bool raise_after_is_rel // = false
|
||||
) {
|
||||
DEBUG_SECTION(log_probe, "Probe::probe_at_point", DEBUGGING(LEVELING));
|
||||
|
||||
|
@ -1010,7 +1010,7 @@ float Probe::probe_at_point(
|
|||
switch (raise_after) {
|
||||
default: break;
|
||||
case PROBE_PT_RAISE:
|
||||
if (raise_after_is_relative)
|
||||
if (raise_after_is_rel)
|
||||
do_z_clearance_by(z_clearance);
|
||||
else
|
||||
do_z_clearance(z_clearance);
|
||||
|
|
|
@ -193,7 +193,7 @@ public:
|
|||
const_float_t z_clearance = Z_TWEEN_SAFE_CLEARANCE,
|
||||
const bool raise_after_is_rel = false
|
||||
) {
|
||||
return probe_at_point(pos.x, pos.y, raise_after, verbose_level, probe_relative, sanity_check, z_min_point, z_clearance, raise_after_is_relative);
|
||||
return probe_at_point(pos.x, pos.y, raise_after, verbose_level, probe_relative, sanity_check, z_min_point, z_clearance, raise_after_is_rel);
|
||||
}
|
||||
|
||||
#else // !HAS_BED_PROBE
|
||||
|
|
Loading…
Reference in a new issue