Allow stopwatch and printcounter to go over 18 hours

This commit is contained in:
Scott Lahteine
2016-07-12 19:03:42 -07:00
parent 6080924589
commit e481b79af1
7 changed files with 24 additions and 26 deletions

View File

@@ -386,7 +386,7 @@ static void lcd_implementation_status_screen() {
}
u8g.setPrintPos(80,48);
uint16_t time = print_job_timer.duration() / 60;
millis_t time = print_job_timer.duration() / 60;
if (time != 0) {
lcd_print(itostr2(time/60));
lcd_print(':');