From 7b7b08e626aaf299e967f98a7af1c344a0eebfd5 Mon Sep 17 00:00:00 2001 From: Toby Jaffey Date: Tue, 9 Dec 2025 01:18:14 +0000 Subject: [PATCH] Show cursor on exit --- host/host.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/host/host.c b/host/host.c index ff81373..5d306e7 100644 --- a/host/host.c +++ b/host/host.c @@ -36,7 +36,7 @@ const uvm32_mapping_t env[] = { void disableRawMode(void) { tcsetattr(STDIN_FILENO, TCSAFLUSH, &orig_termios); - printf("\033c"); + printf("\033[?25h"); // show cursor fflush(stdout); }