Patch DISTINCT_E_FACTORS bug

This commit is contained in:
Scott Lahteine
2017-03-05 23:19:06 -06:00
parent 20addc6e32
commit bfb0007573
3 changed files with 13 additions and 4 deletions

View File

@ -147,7 +147,7 @@ volatile long Stepper::endstops_trigsteps[XYZ];
X2_STEP_WRITE(v); \
} \
else { \
if (current_block->active_extruder != 0) X2_STEP_WRITE(v); else X_STEP_WRITE(v); \
if (current_block->active_extruder) X2_STEP_WRITE(v); else X_STEP_WRITE(v); \
}
#else
#define X_APPLY_DIR(v,Q) X_DIR_WRITE(v)