Merge pull request #6000 from trivalik/NoWorkspaceWarning
prevent warning with define of NO_WORKSPACE_OFFSETS
This commit is contained in:
commit
51353f8fea
@ -4599,8 +4599,10 @@ inline void gcode_G92() {
|
||||
current_position[i] = code_value_axis_units(i);
|
||||
if (i != E_AXIS) didXYZ = true;
|
||||
#else
|
||||
float p = current_position[i],
|
||||
v = code_value_axis_units(i);
|
||||
#if DISABLED(NO_WORKSPACE_OFFSETS)
|
||||
float p = current_position[i];
|
||||
#endif
|
||||
float v = code_value_axis_units(i);
|
||||
|
||||
current_position[i] = v;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user