Remove stale reference to endstops_stop

This was accidentally left out of the change at 13ec2d75.
This commit is contained in:
Phil Hord 2013-10-30 11:11:53 -04:00 committed by Markus Hitter
parent 498779d7ab
commit c695f1e4f7
1 changed files with 1 additions and 1 deletions

2
dda.c
View File

@ -493,7 +493,7 @@ void dda_step(DDA *dda) {
}
}
#else // ACCELERATION_TEMPORAL
if ((dda->axis_to_step == 'y') && ! endstop_stop) {
if (dda->axis_to_step == 'y') {
y_step();
move_state.y_steps--;
move_state.y_time += dda->y_step_interval;