Skip to content
Snippets Groups Projects
Commit 9992c424 authored by Scott Lahteine's avatar Scott Lahteine
Browse files

Patch G92.9 flags

Followup to #13703
parent b1c13bce
Branches
Tags
No related merge requests found
......@@ -67,7 +67,11 @@ void GcodeSuite::G92() {
LOOP_XYZE(i) {
if (parser.seenval(axis_codes[i])) {
current_position[i] = parser.value_axis_units((AxisEnum)i);
#if IS_SCARA || !HAS_POSITION_SHIFT
if (i == E_AXIS) didE = true; else didXYZ = true;
#elif HAS_POSITION_SHIFT
if (i == E_AXIS) didE = true;
#endif
}
}
} break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment