From d793b79dea7d5e19982128528276cf05d6c23b5d Mon Sep 17 00:00:00 2001 From: fschildt Date: Sun, 28 Sep 2025 13:51:52 +0200 Subject: minesweeper: increase grid size --- src/games/minesweeper/Minesweeper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/games/minesweeper/Minesweeper.cpp b/src/games/minesweeper/Minesweeper.cpp index 8f20268..2174ab8 100644 --- a/src/games/minesweeper/Minesweeper.cpp +++ b/src/games/minesweeper/Minesweeper.cpp @@ -37,7 +37,7 @@ Minesweeper::Reset(Difficulty difficulty) } - float cell_size = 0.8f * std::min(m_world_height / MAX_MAP_HEIGHT, m_world_width / MAX_MAP_WIDTH); + float cell_size = 1.2f * std::min(m_world_height / MAX_MAP_HEIGHT, m_world_width / MAX_MAP_WIDTH); float cell_size_without_border = 0.8f * cell_size; V2F32 grid_size = { -- cgit v1.2.3