From 80a10a157ed1a37a86492557c028d0286433a669 Mon Sep 17 00:00:00 2001 From: thorium1256 Date: Sun, 22 Jun 2025 14:44:01 +0300 Subject: [PATCH] don't render when paused --- src/main.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index 64483de..92cf68e 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -86,6 +86,9 @@ void startGame(Board &board) displayChar = 'X'; } + if (isPaused) + displayChar = '#'; + if (x == cursorX && y == cursorY) { attron(A_REVERSE);