Browse Source

Fix M106 for index > extruders (#13473)

Chris Pepper 6 years ago
parent
commit
aacc1148b0
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/gcode/temperature/M106_M107.cpp

+ 1
- 1
Marlin/src/gcode/temperature/M106_M107.cpp View File

33
   #define _CNT_P EXTRUDERS
33
   #define _CNT_P EXTRUDERS
34
 #else
34
 #else
35
   #define _ALT_P MIN(active_extruder, FAN_COUNT - 1)
35
   #define _ALT_P MIN(active_extruder, FAN_COUNT - 1)
36
-  #define _CNT_P MIN(EXTRUDERS, FAN_COUNT)
36
+  #define _CNT_P FAN_COUNT
37
 #endif
37
 #endif
38
 
38
 
39
 /**
39
 /**

Loading…
Cancel
Save