From 9be91f094254366328994c06fa4421cf9fa0e51b Mon Sep 17 00:00:00 2001 From: ItsDrike Date: Sat, 7 Dec 2024 12:49:28 +0100 Subject: [PATCH] Remove left over unneccessary clean-up logic --- src/gamestate.cpp | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/gamestate.cpp b/src/gamestate.cpp index 13e56e4..5815409 100644 --- a/src/gamestate.cpp +++ b/src/gamestate.cpp @@ -79,15 +79,6 @@ void GameState::setupWinningDeck() { m_columns[i] = column; } - // Ensure other columns are empty - for (int i = 4; i < 7; ++i) { - m_columns[i].clear(); - } - - // The draw pile and throwaway pile are empty - m_drawPile.clear(); - m_throwawayPile.clear(); - emit drawPileChanged(); emit throwawayPileChanged(); emit columnsChanged();