mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2026-03-05 17:44:48 -07:00
Fix e_move_accumulator reference in planner.cpp
This commit is contained in:
parent
04a0c400e0
commit
0085568160
1 changed files with 1 additions and 1 deletions
|
|
@ -2017,7 +2017,7 @@ bool Planner::_populate_block(
|
|||
TERN_(HAS_REAL_Z, dist_mm.real.z = dz);
|
||||
|
||||
TERN_(HAS_EXTRUDERS, dist_mm.e = esteps_float * mm_per_step[E_AXIS_N(extruder)]);
|
||||
TERN_(LCD_SHOW_E_TOTAL, e_move_accumulator += dist_mm.e);
|
||||
TERN_(LCD_SHOW_E_TOTAL, motion.e_move_accumulator += dist_mm.e);
|
||||
|
||||
TERN_(FT_MOTION, block->ext_distance_mm = dist_mm); // Store the distance for all axes in mm for this block
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue