Squish the code down a little
This commit is contained in:
		@@ -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 == X_AXIS) ? x_home_dir(active_extruder) :
 | 
				
			||||||
      axis_home_dir = (axis == X_AXIS) ? x_home_dir(active_extruder) : home_dir(axis);
 | 
					      #endif
 | 
				
			||||||
    #else
 | 
					      home_dir(axis);
 | 
				
			||||||
      axis_home_dir = home_dir(axis);
 | 
					 | 
				
			||||||
    #endif
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    // 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;
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user