]> git.earman.xyz Git - sensor-watch.git/commitdiff
Swapped the Nice and Job so the Nice text is more likely to appear first.
authorDavid Volovskiy <devolov@gmail.com>
Sat, 17 Aug 2024 16:35:48 +0000 (12:35 -0400)
committerDavid Volovskiy <devolov@gmail.com>
Tue, 3 Sep 2024 20:11:54 +0000 (16:11 -0400)
movement/watch_faces/complication/wordle_face.c

index be466cda6a7d6807016fbfb46ce97d6b2ddd7ec5..2838b7f2e95211fc4f13a54f1f924985e4c81854 100644 (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) {
     (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);
 }