]> git.earman.xyz Git - sensor-watch.git/commitdiff
Don't delete the submitted characters if already guessed or not in dict
authorDavid Volovskiy <devolov@gmail.com>
Sat, 17 Aug 2024 17:22:03 +0000 (13:22 -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 2838b7f2e95211fc4f13a54f1f924985e4c81854..94b28e5089e821fded7b4fb1b793169d2bcb439c 100644 (file)
@@ -415,7 +415,9 @@ static bool act_on_btn(wordle_state_t *state) {
         return true;
     case SCREEN_NO_DICT:
     case SCREEN_ALREADY_GUESSED:
-        show_start_of_attempt(state);
+        state->position= state->position = get_first_pos(state->word_elements_result);
+        display_all_letters(state);
+        state->curr_screen = SCREEN_PLAYING;
         return true;
 #if USE_DAILY_STREAK
     case SCREEN_WAIT: