Browse Source

Fix declaration of old_z_probe_endstop.

pull/1/head
Chris Roadfeldt 10 years ago
parent
commit
92eb8109ab
  1. 7
      Marlin/stepper.cpp

7
Marlin/stepper.cpp

@ -97,9 +97,10 @@ static bool old_x_min_endstop = false,
old_z2_min_endstop = false,
old_z2_max_endstop = false;
#endif
#if defined Z_PROBE_AND_ENDSTOP
old_z_probe_endstop = false;
#endif
#ifdef Z_PROBE_AND_ENDSTOP
static bool old_z_probe_endstop = false;
#endif
static bool check_endstops = true;

Loading…
Cancel
Save