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

This commit is contained in:
randellhodges 2019-12-12 16:51:35 -06:00 committed by Scott Lahteine
parent 3d4aa015a8
commit 2a7f1091ce

View file

@ -553,7 +553,7 @@ void manage_inactivity(const bool ignore_stepper_queue/*=false*/) {
bool oldstatus;
switch (active_extruder) {
default:
#define _CASE_EN(N) case N: oldstatus = E##N_ENABLE_READ(); enable_E##N(); break;
#define _CASE_EN(N) case N: oldstatus = E##N##_ENABLE_READ(); enable_E##N(); break;
REPEAT(E_STEPPERS, _CASE_EN);
}
#endif