Skip to content
Snippets Groups Projects
Commit ada6c43c authored by sphere's avatar sphere
Browse files

Merge branch 'issue1181' into 'next'

This was nothing more crazy than a buffer wraparound.

See merge request STJr/SRB2!2327
parents 3bf764f2 7c257dc7
No related branches found
No related tags found
No related merge requests found
......@@ -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];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment