mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-25 05:41:42 +00:00
This was nothing more crazy than a buffer wraparound.
This commit is contained in:
parent
2747e30f8c
commit
7c257dc765
1 changed files with 1 additions and 1 deletions
|
@ -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];
|
||||||
|
|
Loading…
Reference in a new issue