Browse Source

Fixed chamber-related compile error (#13552)

pull/1/head
Kajetan Rzepecki 5 years ago
committed by Scott Lahteine
parent
commit
2cfa9e9008
  1. 2
      Marlin/src/module/temperature.h

2
Marlin/src/module/temperature.h

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

Loading…
Cancel
Save