Skip to content

Commit

Permalink
Remove redundant debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
mupfdev committed Apr 21, 2022
1 parent 2a69797 commit eb4f48b
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/game.c
Original file line number Diff line number Diff line change
Expand Up @@ -1156,8 +1156,6 @@ static void move_rows_up(game_t* core)

static void reset_game(SDL_bool nyt_mode, game_t* core)
{
unsigned char valid_answer[6] = { 0 };

if (NULL == core)
{
return;
Expand All @@ -1183,9 +1181,6 @@ static void reset_game(SDL_bool nyt_mode, game_t* core)
core->valid_answer_index = xorshift(&core->seed) % core->wordlist.word_count;
}
core->nyt_mode = SDL_FALSE;

get_valid_answer(valid_answer, core);
dbgprint("%s", valid_answer);
}
else
{
Expand Down

0 comments on commit eb4f48b

Please sign in to comment.