From 51bcabbbb64465af56d83fb5b6f9e4da4d4cff28 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 7f2caa2..aae6af2 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);