From 6c3bd2a009dcec1a6a5577a892053b9a45779f4b Mon Sep 17 00:00:00 2001 From: thorium1256 Date: Wed, 25 Jun 2025 15:26:28 +0300 Subject: [PATCH] fixed expert board size --- src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index f696ff6..e2468e4 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -354,8 +354,8 @@ int main() } else { - w = 16; - h = 30; + w = 30; + h = 16; mines = 99; } Board board(w, h, mines);