From e206bf6d689cab448f531b74db7cbc7a6cfce9d2 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Fri, 15 Oct 2021 15:55:52 +0000 Subject: Retry getch() after ERR In the version of ncurses in OpenBSD, the SIGWINCH handler installed by enabling keypad causes the read() inside getch() to fail with EINTR, which getch() doesn't handle, itself returning ERR. --- freecell.c | 1 + 1 file changed, 1 insertion(+) (limited to 'freecell.c') diff --git a/freecell.c b/freecell.c index 3855d18..b3ca0e9 100644 --- a/freecell.c +++ b/freecell.c @@ -325,6 +325,7 @@ static bool quit; static void input(void) { MEVENT m; int ch = getch(); + if (ch == ERR) ch = getch(); uint stack = Stacks; if (ch == KEY_MOUSE && getmouse(&m) == OK) { -- cgit 1.4.1