From 4dc9fd4972e2cc5b0ae93fc75e3cd8f886af9c8b Mon Sep 17 00:00:00 2001 From: gudnimg Date: Tue, 23 Jul 2024 15:55:47 +0000 Subject: [PATCH] MMU: revert fallthrough in LogicStep --- Firmware/mmu2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Firmware/mmu2.cpp b/Firmware/mmu2.cpp index 2cab0aa2b..55405637b 100644 --- a/Firmware/mmu2.cpp +++ b/Firmware/mmu2.cpp @@ -885,7 +885,7 @@ StepStatus MMU2::LogicStep(bool reportErrors) { case Finished: // At this point it is safe to trigger a runout and not interrupt the MMU protocol CheckFINDARunout(); - [[fallthrough]]; // let Finished be reported the same way like Processing + break; case Processing: OnMMUProgressMsg(logic.Progress());