Remove M601 from queue before saving state (prevent infinite loop - PFW713)

This commit is contained in:
Robert Pelnar 2018-12-18 20:39:38 +01:00
parent 34f116b4d9
commit 16e5fb50dd

View File

@ -6518,6 +6518,7 @@ if((eSoundMode==e_SOUND_MODE_LOUD)||(eSoundMode==e_SOUND_MODE_ONCE))
#endif //FILAMENTCHANGEENABLE #endif //FILAMENTCHANGEENABLE
case 601: //! M601 - Pause print case 601: //! M601 - Pause print
{ {
cmdqueue_pop_front(); //trick because we want skip this command (M601) after restore
lcd_pause_print(); lcd_pause_print();
} }
break; break;