Browse Source

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

randellhodges 4 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,7 +553,7 @@ void manage_inactivity(const bool ignore_stepper_queue/*=false*/) {
553 553
         bool oldstatus;
554 554
         switch (active_extruder) {
555 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 557
           REPEAT(E_STEPPERS, _CASE_EN);
558 558
         }
559 559
       #endif

Loading…
Cancel
Save