Browse Source

[WIP] Fix Probe::offset_xy (#20290)

Co-authored-by: Jason Smith <jason.inet@gmail.com>
Štěpán Dalecký 4 years ago
parent
commit
5cae4e9f55
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/module/probe.cpp

+ 1
- 1
Marlin/src/module/probe.cpp View File

89
 xyz_pos_t Probe::offset; // Initialized by settings.load()
89
 xyz_pos_t Probe::offset; // Initialized by settings.load()
90
 
90
 
91
 #if HAS_PROBE_XY_OFFSET
91
 #if HAS_PROBE_XY_OFFSET
92
-  const xy_pos_t &Probe::offset_xy = xy_pos_t(Probe::offset);
92
+  const xy_pos_t &Probe::offset_xy = Probe::offset;
93
 #endif
93
 #endif
94
 
94
 
95
 #if ENABLED(Z_PROBE_SLED)
95
 #if ENABLED(Z_PROBE_SLED)

Loading…
Cancel
Save