Consistent Probe XY offset type

This commit is contained in:
Scott Lahteine
2020-11-24 17:38:13 -06:00
parent e9431b5445
commit 296a2ad7e4
3 changed files with 5 additions and 5 deletions

View File

@ -89,7 +89,7 @@ Probe probe;
xyz_pos_t Probe::offset; // Initialized by settings.load()
#if HAS_PROBE_XY_OFFSET
const xyz_pos_t &Probe::offset_xy = Probe::offset;
const xy_pos_t &Probe::offset_xy = xy_pos_t(Probe::offset);
#endif
#if ENABLED(Z_PROBE_SLED)