make Friday lowercase
This commit is contained in:
parent
251c4ba3c2
commit
315cbb438e
@ -31,7 +31,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];
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user