From 6cfe000ac90b79b8fd7ea3687f525da8d3765cba Mon Sep 17 00:00:00 2001 From: Yuri D'Elia Date: Fri, 30 Sep 2022 12:43:53 +0200 Subject: [PATCH] cleanup: Reorder members to match initialization order --- Firmware/mmu2.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Firmware/mmu2.h b/Firmware/mmu2.h index 005653726..08fde19c0 100644 --- a/Firmware/mmu2.h +++ b/Firmware/mmu2.h @@ -279,9 +279,8 @@ private: /// unlike the mid-print ToolChange commands, which only load the first ~30mm and then the G-code takes over. bool loadingToNozzle; - uint8_t retryAttempts; - bool inAutoRetry; + uint8_t retryAttempts; }; /// following Marlin's way of doing stuff - one and only instance of MMU implementation in the code base