From 6915a0d82738f42eb9d09065c034731718d614d0 Mon Sep 17 00:00:00 2001 From: thorium1256 Date: Fri, 27 Jun 2025 16:01:55 +0300 Subject: [PATCH] small change to board size --- src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 5e3154d..3e9f21e 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -334,9 +334,9 @@ int main() attroff(A_REVERSE); mvprintw(3, 2, choice == 1 ? "" : "Intermediate (16x16, 40 mines)"); attron(A_REVERSE); - mvprintw(4, 2, choice == 2 ? "Expert (16x30, 99 mines)" : ""); + mvprintw(4, 2, choice == 2 ? "Expert (30x16, 99 mines)" : ""); attroff(A_REVERSE); - mvprintw(4, 2, choice == 2 ? "" : "Expert (16x30, 99 mines)"); + mvprintw(4, 2, choice == 2 ? "" : "Expert (30x16, 99 mines)"); refresh(); int ch = getch();