From: David Volovskiy Date: Sat, 17 Aug 2024 16:35:48 +0000 (-0400) Subject: Swapped the Nice and Job so the Nice text is more likely to appear first. X-Git-Url: https://git.earman.xyz/?a=commitdiff_plain;h=a0111fbe24fdf0085ca9ee89d9f56e1d1603af63;p=sensor-watch.git Swapped the Nice and Job so the Nice text is more likely to appear first. --- diff --git a/movement/watch_faces/complication/wordle_face.c b/movement/watch_faces/complication/wordle_face.c index be466cd..2838b7f 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); }