From 9d8cc24abf8d0cb70465f8d7790fff1cd57a1f2d Mon Sep 17 00:00:00 2001 From: Richard Wackerbarth Date: Thu, 6 Aug 2015 21:57:35 -0500 Subject: [PATCH] Continue from the line following the M999 (PR#60) If the printer is going to accept the M999, then it should continue from that line number. --- Marlin/Marlin_main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Marlin/Marlin_main.cpp b/Marlin/Marlin_main.cpp index 8f1239eb48..42f51194d7 100644 --- a/Marlin/Marlin_main.cpp +++ b/Marlin/Marlin_main.cpp @@ -5083,7 +5083,7 @@ inline void gcode_M907() { inline void gcode_M999() { Running = true; lcd_reset_alert_level(); - gcode_LastN = Stopped_gcode_LastN; + // gcode_LastN = Stopped_gcode_LastN; FlushSerialRequestResend(); }