thordarsen
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
1 deletions
-
Marlin/src/module/temperature.cpp
|
|
@ -210,9 +210,10 @@ const char str_t_thermal_runaway[] PROGMEM = STR_T_THERMAL_RUNAWAY, |
|
|
|
if (target < EXTRUDERS) singlenozzle_fan_speed[target] = speed; |
|
|
|
return; |
|
|
|
} |
|
|
|
target = 0; // Always use fan index 0 with SINGLENOZZLE
|
|
|
|
#endif |
|
|
|
|
|
|
|
TERN_(SINGLENOZZLE, target = 0); // Always use fan index 0 with SINGLENOZZLE
|
|
|
|
|
|
|
|
if (target >= FAN_COUNT) return; |
|
|
|
|
|
|
|
fan_speed[target] = speed; |
|
|
|