Merge pull request #4398 from gudnimg/minor-opt-offset

optimisation: Remove unused Z offset
This commit is contained in:
3d-gussner 2023-09-22 14:56:26 +02:00 committed by GitHub
commit c92c0fda38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -267,7 +267,7 @@ const char axis_codes[NUM_AXIS] = {'X', 'Y', 'Z', 'E'};
float destination[NUM_AXIS] = { 0.0, 0.0, 0.0, 0.0};
// For tracing an arc
static float offset[3] = {0.0, 0.0, 0.0};
static float offset[2] = {0.0, 0.0};
// Current feedrate
float feedrate = 1500.0;