From 7c257dc765424d8eaca52fcc00a0ecfba7f291e5 Mon Sep 17 00:00:00 2001 From: Arthur <spaddlewit@gmail.com> Date: Fri, 16 Feb 2024 19:47:15 -0500 Subject: [PATCH] This was nothing more crazy than a buffer wraparound. --- src/console.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/console.c b/src/console.c index 4143e5e066..0d296ca741 100644 --- a/src/console.c +++ b/src/console.c @@ -120,7 +120,7 @@ static void CONS_backcolor_Change(void); #ifdef macintosh #define CON_BUFFERSIZE 4096 // my compiler can't handle local vars >32k #else -#define CON_BUFFERSIZE 16384 +#define CON_BUFFERSIZE 32768 #endif static char con_buffer[CON_BUFFERSIZE]; -- GitLab