From f44d54293ccde8c53a74b098167d56698378d425 Mon Sep 17 00:00:00 2001 From: dawidg81 Date: Sun, 8 Feb 2026 13:32:41 +0100 Subject: Patching flag display --- src/Game.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Game.cpp') diff --git a/src/Game.cpp b/src/Game.cpp index f5d71e1..2b2d184 100644 --- a/src/Game.cpp +++ b/src/Game.cpp @@ -51,7 +51,7 @@ void Game::updateBoard(){ for(int y=0; y < boardHeight; y++){ for(int x=0; x < boardWidth; x++){ if(!revealed[y][x]) continue; - if(flag[y][x]) continue; + if(flag[y][x]) tileMap[y][x] = 10; else tileMap[y][x] = 10; int bombs = bombCheck(x, y); -- cgit v1.2.3