Skip to content

Commit

Permalink
Merge pull request prusa3d#4398 from gudnimg/minor-opt-offset
Browse files Browse the repository at this point in the history
optimisation: Remove unused Z offset
  • Loading branch information
3d-gussner authored Sep 22, 2023
2 parents 1b6bdb7 + e323490 commit c92c0fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Firmware/Marlin_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit c92c0fd

Please sign in to comment.