Browse Source

Patch duration_t toDigital method

pull/1/head
Kai 8 years ago
committed by Scott Lahteine
parent
commit
9f706a9635
  1. 7
      Marlin/duration_t.h

7
Marlin/duration_t.h

@ -146,11 +146,12 @@ struct duration_t {
* 11d 12:33
*/
void toDigital(char *buffer, bool with_days=false) const {
int m = this->minute() % 60;
uint16_t h = uint16_t(this->hour() % 24UL),
m = uint16_t(this->minute() % 60UL);
if (with_days)
sprintf_P(buffer, PSTR("%id %02i:%02i"), this->day(), this->hour() % 24, m);
sprintf_P(buffer, PSTR("%ud %02u:%02u"), this->day(), h, m);
else
sprintf_P(buffer, PSTR("%02i:%02i"), this->hour(), m);
sprintf_P(buffer, PSTR("%02u:%02u"), h, m);
}
};

Loading…
Cancel
Save