From a0111fbe24fdf0085ca9ee89d9f56e1d1603af63 Mon Sep 17 00:00:00 2001 From: David Volovskiy Date: Sat, 17 Aug 2024 12:35:48 -0400 Subject: [PATCH] Swapped the Nice and Job so the Nice text is more likely to appear first. --- movement/watch_faces/complication/wordle_face.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/movement/watch_faces/complication/wordle_face.c b/movement/watch_faces/complication/wordle_face.c index be466cda..2838b7f2 100644 --- a/movement/watch_faces/complication/wordle_face.c +++ b/movement/watch_faces/complication/wordle_face.c @@ -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) { (void) state; char buf[13]; - sprintf(buf," W %s ", subsecond % 2 ? "NICE" : "JOb "); + sprintf(buf," W %s ", subsecond % 2 ? "JOb " : "NICE"); watch_display_string(buf, 0); }