Merge branch 'issue1181' into 'next'

This was nothing more crazy than a buffer wraparound.

See merge request STJr/SRB2!2327
This commit is contained in:
sphere 2024-02-18 14:40:25 +00:00
commit ada6c43c52

View file

@ -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];