Browse Source

Fixed chamber-related compile error (#13552)

Kajetan Rzepecki 6 years ago
parent
commit
2cfa9e9008
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/module/temperature.h

+ 1
- 1
Marlin/src/module/temperature.h View File

@@ -572,7 +572,7 @@ class Temperature {
572 572
         #if HAS_HEATED_CHAMBER
573 573
           temp_chamber.target =
574 574
             #ifdef CHAMBER_MAXTEMP
575
-              min(celsius, CHAMBER_MAXTEMP)
575
+              MIN(celsius, CHAMBER_MAXTEMP)
576 576
             #else
577 577
               celsius
578 578
             #endif

Loading…
Cancel
Save