This was nothing more crazy than a buffer wraparound.

This commit is contained in:
Arthur 2024-02-16 19:47:15 -05:00
parent 2747e30f8c
commit 7c257dc765

View file

@ -120,7 +120,7 @@ static void CONS_backcolor_Change(void);
#ifdef macintosh #ifdef macintosh
#define CON_BUFFERSIZE 4096 // my compiler can't handle local vars >32k #define CON_BUFFERSIZE 4096 // my compiler can't handle local vars >32k
#else #else
#define CON_BUFFERSIZE 16384 #define CON_BUFFERSIZE 32768
#endif #endif
static char con_buffer[CON_BUFFERSIZE]; static char con_buffer[CON_BUFFERSIZE];