Commit c74806df authored by MagoKimbra's avatar MagoKimbra

Fix G92 on Delta

parent 3444e44d
...@@ -3667,7 +3667,11 @@ inline void gcode_G92() { ...@@ -3667,7 +3667,11 @@ inline void gcode_G92() {
didXYZ = true; didXYZ = true;
} }
} }
#if defined(DELTA) || defined(SCARA)
if (didXYZ) sync_plan_position_delta();
#else
if (didXYZ) sync_plan_position(); if (didXYZ) sync_plan_position();
#endif
} }
#ifdef ULTIPANEL #ifdef ULTIPANEL
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment