Browse Source

Shorter M32 error message

Scott Lahteine 5 years ago
parent
commit
421825259e
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/sd/cardreader.cpp

+ 1
- 1
Marlin/src/sd/cardreader.cpp View File

519
 
519
 
520
       // Too deep? The firmware has to bail.
520
       // Too deep? The firmware has to bail.
521
       if (file_subcall_ctr > SD_PROCEDURE_DEPTH - 1) {
521
       if (file_subcall_ctr > SD_PROCEDURE_DEPTH - 1) {
522
-        SERIAL_ERROR_MSG("trying to call sub-gcode files with too many levels. MAX level is:" STRINGIFY(SD_PROCEDURE_DEPTH));
522
+        SERIAL_ERROR_MSG("Exceeded max SUBROUTINE depth:" STRINGIFY(SD_PROCEDURE_DEPTH));
523
         kill();
523
         kill();
524
         return;
524
         return;
525
       }
525
       }

Loading…
Cancel
Save