Browse Source

Merge pull request #5933 from teemuatlut/lcd_days_hours

Fix formatting of SD print time hours above one day
pull/1/head
Scott Lahteine 8 years ago
committed by GitHub
parent
commit
cbeff12f8a
  1. 2
      Marlin/duration_t.h

2
Marlin/duration_t.h

@ -150,7 +150,7 @@ struct duration_t {
m = uint16_t(this->minute() % 60UL); m = uint16_t(this->minute() % 60UL);
if (with_days) { if (with_days) {
uint16_t d = this->day(); uint16_t d = this->day();
sprintf_P(buffer, PSTR("%ud %02u:%02u"), d, h, m); sprintf_P(buffer, PSTR("%ud %02u:%02u"), d, h % 24, m);
return d >= 10 ? 8 : 7; return d >= 10 ? 8 : 7;
} }
else if (h < 100) { else if (h < 100) {

Loading…
Cancel
Save