Show up to 99:59 in digital time
This commit is contained in:
parent
9afa060ed6
commit
30b1c731b5
1 changed files with 1 additions and 1 deletions
|
@ -145,7 +145,7 @@ struct duration_t {
|
||||||
* 1193046:59
|
* 1193046:59
|
||||||
*/
|
*/
|
||||||
void toDigital(char *buffer) const {
|
void toDigital(char *buffer) const {
|
||||||
int h = this->hour() % 24,
|
int h = this->hour(),
|
||||||
m = this->minute() % 60;
|
m = this->minute() % 60;
|
||||||
|
|
||||||
sprintf_P(buffer, PSTR("%02i:%02i"), h, m);
|
sprintf_P(buffer, PSTR("%02i:%02i"), h, m);
|
||||||
|
|
Reference in a new issue