Skip to content

Commit

Permalink
[WIP] Fix Probe::offset_xy (MarlinFirmware#20290)
Browse files Browse the repository at this point in the history
Co-authored-by: Jason Smith <jason.inet@gmail.com>
  • Loading branch information
2 people authored and vgadreau committed Dec 9, 2020
1 parent 6deb27b commit 0cbb87e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/src/module/probe.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ Probe probe;
xyz_pos_t Probe::offset; // Initialized by settings.load()

#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

#if ENABLED(Z_PROBE_SLED)
Expand Down

0 comments on commit 0cbb87e

Please sign in to comment.