From bdfccb4478b3d0fa9d64342a67be4517274fcd68 Mon Sep 17 00:00:00 2001 From: SteelT Date: Wed, 12 Apr 2023 14:31:50 -0400 Subject: [PATCH] Change static buffer size to 2048, fixes the "directive output may be truncated writing up to" error --- src/sdl/i_system.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sdl/i_system.c b/src/sdl/i_system.c index f93a3b3b4..47a2c8412 100644 --- a/src/sdl/i_system.c +++ b/src/sdl/i_system.c @@ -270,7 +270,7 @@ static void write_backtrace(INT32 signal) 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... if (M_CheckParm("-dedicated"))