Fix block->mix_steps

Fix #11484
This commit is contained in:
Scott Lahteine 2018-09-29 19:16:17 -05:00
parent bb6286f201
commit 0ad8646a6c
1 changed files with 1 additions and 7 deletions

View File

@ -1780,13 +1780,7 @@ bool Planner::_populate_block(block_t * const block, bool split_move,
// For a mixing extruder, get a magnified esteps for each
#if ENABLED(MIXING_EXTRUDER)
for (uint8_t i = 0; i < MIXING_STEPPERS; i++)
block->mix_steps[i] = mixing_factor[i] * (
#if ENABLED(LIN_ADVANCE)
esteps
#else
block->step_event_count
#endif
);
block->mix_steps[i] = mixing_factor[i] * esteps;
#endif
#if FAN_COUNT > 0