diff options
Diffstat (limited to 'src/Game.cpp')
| -rw-r--r-- | src/Game.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); |
