watch utility: make Friday all caps like the others

This commit is contained in:
Joey Castillo 2025-05-21 00:53:13 -04:00
parent e0010f6760
commit f48058568a

View File

@ -33,7 +33,7 @@ const char * watch_utility_get_weekday(watch_date_time_t date_time) {
}
const char * watch_utility_get_long_weekday(watch_date_time_t date_time) {
static const char weekdays[7][4] = {"MON", "TUE", "WED", "THU", "Fri", "SAT", "SUN"};
static const char weekdays[7][4] = {"MON", "TUE", "WED", "THU", "FRI", "SAT", "SUN"};
return weekdays[watch_utility_get_iso8601_weekday_number(date_time.unit.year + WATCH_RTC_REFERENCE_YEAR, date_time.unit.month, date_time.unit.day) - 1];
}