Better handling of seeing if currently playing

This commit is contained in:
David Volovskiy
2024-08-18 22:52:10 -04:00
parent cb57ef237d
commit 7ceb682675
2 changed files with 31 additions and 21 deletions

View File

@@ -108,9 +108,8 @@ typedef struct {
uint16_t guessed_words[WORDLE_MAX_ATTEMPTS];
uint8_t attempt : 4;
uint8_t position : 3;
bool playing : 1;
uint16_t curr_answer : 14;
bool using_random_guess : 1;
uint16_t curr_answer : 15;
bool continuing : 1;
uint8_t streak;
WordleScreen curr_screen;