From: David Volovskiy Date: Sat, 17 Aug 2024 17:22:03 +0000 (-0400) Subject: Don't delete the submitted characters if already guessed or not in dict X-Git-Url: https://git.earman.xyz/?a=commitdiff_plain;h=67c1089fb2c2b7133f3e93803b4f911c8ba87379;p=sensor-watch.git Don't delete the submitted characters if already guessed or not in dict --- diff --git a/movement/watch_faces/complication/wordle_face.c b/movement/watch_faces/complication/wordle_face.c index 2838b7f..94b28e5 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: