Swapped the Nice and Job so the Nice text is more likely to appear first.

This commit is contained in:
David Volovskiy 2024-08-17 12:35:48 -04:00
parent 2a10402d19
commit a0111fbe24

View File

@ -357,7 +357,7 @@ static void display_lose(wordle_state_t *state, uint8_t subsecond) {
static void display_win(wordle_state_t *state, uint8_t subsecond) { static void display_win(wordle_state_t *state, uint8_t subsecond) {
(void) state; (void) state;
char buf[13]; char buf[13];
sprintf(buf," W %s ", subsecond % 2 ? "NICE" : "JOb "); sprintf(buf," W %s ", subsecond % 2 ? "JOb " : "NICE");
watch_display_string(buf, 0); watch_display_string(buf, 0);
} }