Fix FWRETRACT logic, apply common sense

This commit is contained in:
Scott Lahteine 2017-10-26 21:47:42 -05:00
parent 7ab9abe4ef
commit 6569b9ba56
5 changed files with 41 additions and 39 deletions

View file

@ -288,7 +288,7 @@ class Planner {
return 1.0;
}
FORCE_INLINE static bool leveling_active_at_z(const float &lz) { return true; }
FORCE_INLINE static bool leveling_active_at_z(const float &lz) { UNUSED(lz); return true; }
#endif