🐛 Fix M876 without emergency parser

Fix regression from 1fb2fffdbf
This commit is contained in:
Scott Lahteine 2022-10-12 18:15:29 -05:00
parent bfcb8c704a
commit c52cf77d0a
1 changed files with 3 additions and 1 deletions

View File

@ -600,7 +600,9 @@ void GcodeSuite::process_parsed_command(const bool no_ok/*=false*/) {
case 108: M108(); break; // M108: Cancel Waiting
case 112: M112(); break; // M112: Full Shutdown
case 410: M410(); break; // M410: Quickstop - Abort all the planned moves.
TERN_(HOST_PROMPT_SUPPORT, case 876:) // M876: Handle Host prompt responses
#if ENABLED(HOST_PROMPT_SUPPORT)
case 876: M876(); break; // M876: Handle Host prompt responses
#endif
#else
case 108: case 112: case 410:
TERN_(HOST_PROMPT_SUPPORT, case 876:)