Squish the code down a little
This commit is contained in:
parent
8534bc376c
commit
996d0a9185
@ -1501,13 +1501,11 @@ static void homeaxis(AxisEnum axis) {
|
|||||||
|
|
||||||
if (axis == X_AXIS ? HOMEAXIS_DO(X) : axis == Y_AXIS ? HOMEAXIS_DO(Y) : axis == Z_AXIS ? HOMEAXIS_DO(Z) : 0) {
|
if (axis == X_AXIS ? HOMEAXIS_DO(X) : axis == Y_AXIS ? HOMEAXIS_DO(Y) : axis == Z_AXIS ? HOMEAXIS_DO(Z) : 0) {
|
||||||
|
|
||||||
int axis_home_dir;
|
int axis_home_dir =
|
||||||
|
|
||||||
#ifdef DUAL_X_CARRIAGE
|
#ifdef DUAL_X_CARRIAGE
|
||||||
axis_home_dir = (axis == X_AXIS) ? x_home_dir(active_extruder) : home_dir(axis);
|
(axis == X_AXIS) ? x_home_dir(active_extruder) :
|
||||||
#else
|
|
||||||
axis_home_dir = home_dir(axis);
|
|
||||||
#endif
|
#endif
|
||||||
|
home_dir(axis);
|
||||||
|
|
||||||
// Set the axis position as setup for the move
|
// Set the axis position as setup for the move
|
||||||
current_position[axis] = 0;
|
current_position[axis] = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user