From 657d0f610538310217f94a86de5f62b2ca223c4f Mon Sep 17 00:00:00 2001 From: nhmall Date: Wed, 15 Nov 2023 21:19:02 -0500 Subject: [PATCH] fix an incorrect ESC sequence (cut and paste err) --- sys/windows/consoletty.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/windows/consoletty.c b/sys/windows/consoletty.c index 6ec997b8c..7ffb50954 100644 --- a/sys/windows/consoletty.c +++ b/sys/windows/consoletty.c @@ -590,7 +590,7 @@ void emit_start_bold(void) { DWORD unused, reserved; - static const char escseq[] = "\x1b[4m"; + static const char escseq[] = "\x1b[1m"; WriteConsoleA(console.hConOut, (LPCSTR) escseq, (int) strlen(escseq), &unused, &reserved);