Remove stale reference to endstops_stop
This was accidentally left out of the change at 13ec2d75.
This commit is contained in:
parent
498779d7ab
commit
c695f1e4f7
2
dda.c
2
dda.c
|
|
@ -493,7 +493,7 @@ void dda_step(DDA *dda) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#else // ACCELERATION_TEMPORAL
|
#else // ACCELERATION_TEMPORAL
|
||||||
if ((dda->axis_to_step == 'y') && ! endstop_stop) {
|
if (dda->axis_to_step == 'y') {
|
||||||
y_step();
|
y_step();
|
||||||
move_state.y_steps--;
|
move_state.y_steps--;
|
||||||
move_state.y_time += dda->y_step_interval;
|
move_state.y_time += dda->y_step_interval;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue