Browse Source

Fix compile error (macro substitution typo) (#16194)

randellhodges 5 years ago
parent
commit
2a7f1091ce
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/Marlin.cpp

+ 1
- 1
Marlin/src/Marlin.cpp View File

553
         bool oldstatus;
553
         bool oldstatus;
554
         switch (active_extruder) {
554
         switch (active_extruder) {
555
           default:
555
           default:
556
-          #define _CASE_EN(N) case N: oldstatus = E##N_ENABLE_READ(); enable_E##N(); break;
556
+          #define _CASE_EN(N) case N: oldstatus = E##N##_ENABLE_READ(); enable_E##N(); break;
557
           REPEAT(E_STEPPERS, _CASE_EN);
557
           REPEAT(E_STEPPERS, _CASE_EN);
558
         }
558
         }
559
       #endif
559
       #endif

Loading…
Cancel
Save