From 1996cb4167013a64875d4cecbce8e7606e5dfcec Mon Sep 17 00:00:00 2001 From: Markus Hitter Date: Mon, 12 Dec 2011 00:33:08 +0100 Subject: [PATCH] dda.c: axis_to_step = ' ' is no longer needed. The need for this was a result of failing code in timer.c, which was fixed in recent commits. --- dda.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/dda.c b/dda.c index 3fbd782..0deb8ac 100644 --- a/dda.c +++ b/dda.c @@ -775,9 +775,6 @@ void dda_step(DDA *dda) { */ uint32_t c_candidate; - // TODO: why is this line needed? If all steps are done, dda_steps() - // shouldn't be called any longer, until after a dda_start(). - dda->axis_to_step = ' '; // start with no axis to step if (move_state.x_steps) { c_candidate = move_state.x_time + dda->x_step_interval - move_state.all_time; dda->axis_to_step = 'x';