Sfoglia il codice sorgente

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

Co-authored-by: Jason Smith <jason.inet@gmail.com>
Štěpán Dalecký 4 anni fa
parent
commit
5cae4e9f55
Nessun account collegato all'indirizzo email del committer
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1
    1
      Marlin/src/module/probe.cpp

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

@@ -89,7 +89,7 @@ Probe probe;
89 89
 xyz_pos_t Probe::offset; // Initialized by settings.load()
90 90
 
91 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 93
 #endif
94 94
 
95 95
 #if ENABLED(Z_PROBE_SLED)

Loading…
Annulla
Salva