Skip to content
Snippets Groups Projects
Commit 7c257dc7 authored by SSNTails's avatar SSNTails
Browse files

This was nothing more crazy than a buffer wraparound.

parent 2747e30f
No related branches found
No related tags found
No related merge requests found
...@@ -120,7 +120,7 @@ static void CONS_backcolor_Change(void); ...@@ -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];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment