From c695f1e4f79a494d09c9b9cd0b7c7a6d325d818a Mon Sep 17 00:00:00 2001 From: Phil Hord Date: Wed, 30 Oct 2013 11:11:53 -0400 Subject: [PATCH] Remove stale reference to endstops_stop This was accidentally left out of the change at 13ec2d75. --- dda.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dda.c b/dda.c index a02f37d..807c638 100644 --- a/dda.c +++ b/dda.c @@ -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;