diff --git a/Userland/Games/Solitaire/Game.cpp b/Userland/Games/Solitaire/Game.cpp index e12867d66f..d2341a81e5 100644 --- a/Userland/Games/Solitaire/Game.cpp +++ b/Userland/Games/Solitaire/Game.cpp @@ -175,6 +175,9 @@ void Game::setup(Mode mode) for (uint8_t i = 0; i < 200; ++i) m_new_deck.append(m_new_deck.take(get_random_uniform(m_new_deck.size()))); + m_focused_stack = nullptr; + m_focused_cards.clear(); + m_new_game_animation = true; start_timer(s_timer_interval_ms); update();