Pass array pointer to unapply_leveling

This commit is contained in:
Scott Lahteine
2016-09-23 03:01:27 -05:00
parent cbc158eb62
commit 22ece0081e
3 changed files with 13 additions and 14 deletions

View File

@ -219,7 +219,7 @@ class Planner {
* as it will be given to the planner and steppers.
*/
static void apply_leveling(float &lx, float &ly, float &lz);
static void unapply_leveling(float &lx, float &ly, float &lz);
static void unapply_leveling(float logical[XYZ]);
#endif