From 67c1089fb2c2b7133f3e93803b4f911c8ba87379 Mon Sep 17 00:00:00 2001 From: David Volovskiy Date: Sat, 17 Aug 2024 13:22:03 -0400 Subject: [PATCH] Don't delete the submitted characters if already guessed or not in dict --- movement/watch_faces/complication/wordle_face.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/movement/watch_faces/complication/wordle_face.c b/movement/watch_faces/complication/wordle_face.c index 2838b7f2..94b28e50 100644 --- a/movement/watch_faces/complication/wordle_face.c +++ b/movement/watch_faces/complication/wordle_face.c @@ -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: