Fix count_direction initializer

- Addressing #1625
master
Scott Lahteine 9 years ago
parent e3f04c876a
commit 2176a22d42

@ -89,7 +89,7 @@ static bool old_x_min_endstop = false,
static bool check_endstops = true;
volatile long count_position[NUM_AXIS] = { 0 };
volatile signed char count_direction[NUM_AXIS] = { 1 };
volatile signed char count_direction[NUM_AXIS] = { 1, 1, 1, 1 };
//===========================================================================

Loading…
Cancel
Save