No USE_M73_REMAINING_TIME without LCD_SET_PROGRESS_MANUALLY

This commit is contained in:
Scott Lahteine
2019-11-13 02:07:09 -06:00
parent fcfde7c2f5
commit 602ca5dea6
5 changed files with 5 additions and 5 deletions

View File

@ -43,7 +43,7 @@ void GcodeSuite::M73() {
? parser.value_float() * (PROGRESS_SCALE)
: parser.value_byte()
);
#if ENABLED(USE_M73_REMAINING_TIME)
#if BOTH(LCD_SET_PROGRESS_MANUALLY, USE_M73_REMAINING_TIME)
if (parser.seen('R')) ui.set_remaining_time(60 * parser.value_ulong());
#endif
}