Fix M0/M1 broken wait loop (#16921)

This commit is contained in:
ellensp 2020-02-23 13:37:39 +13:00 committed by GitHub
parent b9b29bf4c0
commit 7bf3581b02
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -102,7 +102,7 @@ void GcodeSuite::M0_M1() {
#endif
if (ms > 0) ms += millis(); // wait until this time for a click
while (wait_for_user && (ms > 0 || PENDING(millis(), ms))) idle();
while (wait_for_user || (ms > 0 && PENDING(millis(), ms))) idle();
#if HAS_LEDS_OFF_FLAG
printerEventLEDs.onResumeAfterWait();