From 6e4e7b47883d6ada4e2aaf7b4c69e20112711813 Mon Sep 17 00:00:00 2001 From: Judro Date: Tue, 13 Feb 2024 20:05:45 +0100 Subject: [PATCH] disable echo of input --- src/mines.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mines.c b/src/mines.c index 481ac0b..552a075 100644 --- a/src/mines.c +++ b/src/mines.c @@ -88,6 +88,7 @@ int main(int argc, char *argv[]) { WINDOW *window = initscr(); start_color(); curs_set(0); + noecho(); GameInstance game = select_mode(getmaxx(window), getmaxy(window)); if (game == NULL) { goto end;