dda.c: add forgotten variable declaration.

Forgotten in commit 74808610c7,
"DDA: Move axis calculations into loops, part 5.".

This and the previous commit makes ACCELERATION_TEMPORAL building
(and working!) again.
This commit is contained in:
Markus Hitter 2015-02-20 12:50:07 +01:00
parent a303f1ba3e
commit a6be2f9584
1 changed files with 1 additions and 0 deletions

1
dda.c
View File

@ -682,6 +682,7 @@ void dda_step(DDA *dda) {
short-delays consecutively and to give sufficient time on average. short-delays consecutively and to give sufficient time on average.
*/ */
uint32_t c_candidate; uint32_t c_candidate;
uint8_t i;
dda->c = 0xFFFFFFFF; dda->c = 0xFFFFFFFF;
for (i = X; i < AXIS_COUNT; i++) { for (i = X; i < AXIS_COUNT; i++) {