Fixed chamber-related compile error (#13552)

This commit is contained in:
Kajetan Rzepecki 2019-04-02 00:53:56 +02:00 committed by Scott Lahteine
parent a0a5c31c05
commit 2cfa9e9008

View file

@ -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