Browse Source
[WIP] Fix Probe::offset_xy (#20290)
Co-authored-by: Jason Smith <jason.inet@gmail.com>
vanilla_fb_2.0.x
Štěpán Dalecký
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
Marlin/src/module/probe.cpp
|
@ -89,7 +89,7 @@ Probe probe; |
|
|
xyz_pos_t Probe::offset; // Initialized by settings.load()
|
|
|
xyz_pos_t Probe::offset; // Initialized by settings.load()
|
|
|
|
|
|
|
|
|
#if HAS_PROBE_XY_OFFSET |
|
|
#if HAS_PROBE_XY_OFFSET |
|
|
const xy_pos_t &Probe::offset_xy = xy_pos_t(Probe::offset); |
|
|
const xy_pos_t &Probe::offset_xy = Probe::offset; |
|
|
#endif |
|
|
#endif |
|
|
|
|
|
|
|
|
#if ENABLED(Z_PROBE_SLED) |
|
|
#if ENABLED(Z_PROBE_SLED) |
|
|