Subcall overflow error message

This commit is contained in:
Scott Lahteine
2020-04-13 14:54:05 -05:00
parent 421825259e
commit e9c8da35c5
2 changed files with 2 additions and 1 deletions

View File

@ -520,7 +520,7 @@ void CardReader::openFileRead(char * const path, const uint8_t subcall_type/*=0*
// Too deep? The firmware has to bail.
if (file_subcall_ctr > SD_PROCEDURE_DEPTH - 1) {
SERIAL_ERROR_MSG("Exceeded max SUBROUTINE depth:" STRINGIFY(SD_PROCEDURE_DEPTH));
kill();
kill(GET_TEXT(MSG_KILL_SUBCALL_OVERFLOW));
return;
}