]> git.earman.xyz Git - sensor-watch.git/commitdiff
Fixed Sunday text
authorDavid Volovskiy <devolov@gmail.com>
Mon, 1 Sep 2025 13:41:51 +0000 (09:41 -0400)
committerDavid Volovskiy <devolov@gmail.com>
Mon, 1 Sep 2025 13:41:51 +0000 (09:41 -0400)
watch-faces/complication/advanced_alarm_face.c

index 39739bc4e5b1bbacd464426f4d70a7fda3158f4b..26f6eb5e85b500f0731fedd87bd23e0016016315 100644 (file)
@@ -40,7 +40,7 @@ typedef enum {
     alarm_setting_idx_beeps
 } alarm_setting_idx_t;
 
-static const char _dow_strings[ALARM_DAY_STATES + 1][2] ={"AL", "MO", "TU", "WE", "TH", "FR", "SA", "SO", "ED", "1t", "MF", "WN"};
+static const char _dow_strings[ALARM_DAY_STATES + 1][2] ={"AL", "MO", "TU", "WE", "TH", "FR", "SA", "SU", "ED", "1t", "MF", "WN"};
 static const uint8_t _blink_idx[ALARM_SETTING_STATES] = {2, 0, 4, 6, 8, 9};
 static const uint8_t _blink_idx2[ALARM_SETTING_STATES] = {3, 1, 5, 7, 8, 9};
 static const watch_buzzer_note_t _buzzer_notes[3] = {BUZZER_NOTE_B6, BUZZER_NOTE_C8, BUZZER_NOTE_A8};