Use MIN/MAX for min/max
This commit is contained in:
		@@ -74,7 +74,7 @@ void GcodeSuite::M425() {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  if (parser.seen('F')) {
 | 
					  if (parser.seen('F')) {
 | 
				
			||||||
    planner.synchronize();
 | 
					    planner.synchronize();
 | 
				
			||||||
    backlash_correction = max(0, min(1.0, parser.value_linear_units()));
 | 
					    backlash_correction = MAX(0, MIN(1.0, parser.value_linear_units()));
 | 
				
			||||||
    noArgs = false;
 | 
					    noArgs = false;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user