FIX: fix a typo in GCodeProcessor

Change-Id: I56b9eaedc3cb062d17facf7352eb469524db5b60
(cherry picked from commit 1bb3b64cfc1aabad9ece3e5d5c0f55a9cb3367c5)
(cherry picked from commit ced9e43be6)
This commit is contained in:
lane.wei
2023-07-03 10:33:21 +08:00
committed by Noisyfox
parent 193ab1da34
commit d9cac68a45

View File

@@ -1576,7 +1576,7 @@ void GCodeProcessor::process_gcode_line(const GCodeReader::GCodeLine& line, bool
case '2': case '2':
case '3': { process_G2_G3(line); break; } // Move case '3': { process_G2_G3(line); break; } // Move
//BBS //BBS
case 4: { process_G4(line); break; } // Delay case '4': { process_G4(line); break; } // Delay
default: break; default: break;
} }
break; break;