Browse Source

Escape the M33 string arg (#19515)

Victor Oliveira 3 years ago
parent
commit
61d96ce1c9
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/gcode/parser.cpp

+ 1
- 1
Marlin/src/gcode/parser.cpp View File

247
     #if ENABLED(EXPECTED_PRINTER_CHECK)
247
     #if ENABLED(EXPECTED_PRINTER_CHECK)
248
       case 16:
248
       case 16:
249
     #endif
249
     #endif
250
-    case 23: case 28: case 30: case 117: case 118: case 928:
250
+    case 23: case 28: case 30: case 33: case 117: case 118: case 928:
251
       string_arg = unescape_string(p);
251
       string_arg = unescape_string(p);
252
       return;
252
       return;
253
     default: break;
253
     default: break;

Loading…
Cancel
Save