From 8cf5504a34b3133e0b4856f1646ffc5a2ef139dd Mon Sep 17 00:00:00 2001 From: Tanguy Pruvot Date: Tue, 11 Jun 2019 06:33:35 +0200 Subject: [PATCH] Redundant but faster recovery.enabled test (#14175) --- Marlin/src/gcode/gcode.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Marlin/src/gcode/gcode.cpp b/Marlin/src/gcode/gcode.cpp index 8d54bac52..2c784a5bb 100644 --- a/Marlin/src/gcode/gcode.cpp +++ b/Marlin/src/gcode/gcode.cpp @@ -120,7 +120,8 @@ void GcodeSuite::get_destination_from_command() { #if ENABLED(POWER_LOSS_RECOVERY) // Only update power loss recovery on moves with E - if (seen[E_AXIS] && (seen[X_AXIS] || seen[Y_AXIS]) && IS_SD_PRINTING()) recovery.save(); + if (recovery.enabled && IS_SD_PRINTING() && seen[E_AXIS] && (seen[X_AXIS] || seen[Y_AXIS])) + recovery.save(); #endif if (parser.linearval('F') > 0)