mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-26 03:51:50 +00:00
Change static buffer size to 2048, fixes the "directive output may be truncated writing up to" error
This commit is contained in:
parent
74247d8100
commit
bdfccb4478
1 changed files with 1 additions and 1 deletions
|
|
@ -270,7 +270,7 @@ static void write_backtrace(INT32 signal)
|
||||||
|
|
||||||
static void I_ShowErrorMessageBox(const char *messagefordevelopers, boolean dumpmade)
|
static void I_ShowErrorMessageBox(const char *messagefordevelopers, boolean dumpmade)
|
||||||
{
|
{
|
||||||
static char finalmessage[1024];
|
static char finalmessage[2048];
|
||||||
size_t firstimpressionsline = 3; // "Dr Robotnik's Ring Racers" has encountered...
|
size_t firstimpressionsline = 3; // "Dr Robotnik's Ring Racers" has encountered...
|
||||||
|
|
||||||
if (M_CheckParm("-dedicated"))
|
if (M_CheckParm("-dedicated"))
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue