Change static buffer size to 2048, fixes the "directive output may be truncated writing up to" error

This commit is contained in:
SteelT 2023-04-12 14:31:50 -04:00
parent 74247d8100
commit bdfccb4478

View file

@ -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"))