StopWatch: Add an extra space to the string without the hour

so that it's just as long as with the hour.
This commit is contained in:
Mingjie Shen 2023-04-26 22:43:22 -04:00 committed by NeroBurner
parent cd8216d1c9
commit 42fcb99b38

View File

@ -200,7 +200,7 @@ void StopWatch::stopLapBtnEventHandler() {
TimeSeparated_t times = convertTicksToTimeSegments(laps[i]);
char buffer[17];
if (times.hours == 0) {
snprintf(buffer, sizeof(buffer), "#%2d %2d:%02d.%02d\n", i + 1, times.mins, times.secs, times.hundredths);
snprintf(buffer, sizeof(buffer), "#%2d %2d:%02d.%02d\n", i + 1, times.mins, times.secs, times.hundredths);
} else {
snprintf(buffer, sizeof(buffer), "#%2d %2d:%02d:%02d.%02d\n", i + 1, times.hours, times.mins, times.secs, times.hundredths);
}