Compare commits

..

No commits in common. "0e6ef77af6ba277fa2cc9edba01946476f9a3987" and "1ea278834a9b4c3f744c01d18a03b59c8c1072e0" have entirely different histories.

1 changed files with 0 additions and 4 deletions

View File

@ -699,10 +699,6 @@ void ac_set_state(int mode, int temperature, int fan_speed)
{
ac_mode = mode;
ac_temperature = temperature;
if (ac_temperature < AC_MIN_TEMPERATURE)
ac_temperature = AC_MIN_TEMPERATURE;
else if (ac_temperature > AC_MAX_TEMPERATURE)
ac_temperature = AC_MAX_TEMPERATURE;
ac_fan_speed = fan_speed;
temperature -= AC_MIN_TEMPERATURE;