FIX: fix a typo in GCodeProcessor

Change-Id: I56b9eaedc3cb062d17facf7352eb469524db5b60
(cherry picked from commit 1bb3b64cfc1aabad9ece3e5d5c0f55a9cb3367c5)
This commit is contained in:
lane.wei 2023-07-03 10:33:21 +08:00 committed by Lane.Wei
parent ee0fe83744
commit ced9e43be6
1 changed files with 19 additions and 19 deletions

View File

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