custom LCD: weekdays look better in uppercase
This commit is contained in:
parent
4b5e15cc1d
commit
251c4ba3c2
@ -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