Browse Source

🐛 Fix SHOW_REMAINING_TIME compile (#23503)

vanilla_fb_2.0.x^2
Jim Watson 2 years ago
committed by Scott Lahteine
parent
commit
242192d03d
  1. 2
      Marlin/src/lcd/marlinui.h

2
Marlin/src/lcd/marlinui.h

@ -293,6 +293,7 @@ public:
static void set_progress(const progress_t p) { progress_override = _MIN(p, 100U * (PROGRESS_SCALE)); }
static void set_progress_done() { progress_override = (PROGRESS_MASK + 1U) + 100U * (PROGRESS_SCALE); }
static void progress_reset() { if (progress_override & (PROGRESS_MASK + 1U)) set_progress(0); }
#endif
#if ENABLED(SHOW_REMAINING_TIME)
static uint32_t _calculated_remaining_time() {
const duration_t elapsed = print_job_timer.duration();
@ -308,7 +309,6 @@ public:
FORCE_INLINE static uint32_t get_remaining_time() { return _calculated_remaining_time(); }
#endif
#endif
#endif
static progress_t _get_progress();
#if HAS_PRINT_PROGRESS_PERMYRIAD
FORCE_INLINE static uint16_t get_progress_permyriad() { return _get_progress(); }

Loading…
Cancel
Save