From 599ffaa02a6e1ed91dbfad78b64e70e50c8ab0bb Mon Sep 17 00:00:00 2001 From: Richard Stanway Date: Tue, 11 Apr 2017 13:04:30 +0200 Subject: [PATCH] UI: Increase MAX_CRASH_REPORT_SIZE to 150 KB Now that OBS defaults to 64 bits on Windows, our crash reports are often truncated since the 64 bit stack values are using twice as much space. --- UI/obs-app.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/obs-app.cpp b/UI/obs-app.cpp index 8c7e73e23..cf3e78c1e 100644 --- a/UI/obs-app.cpp +++ b/UI/obs-app.cpp @@ -1303,7 +1303,7 @@ static int run_program(fstream &logFile, int argc, char *argv[]) return ret; } -#define MAX_CRASH_REPORT_SIZE (50 * 1024) +#define MAX_CRASH_REPORT_SIZE (150 * 1024) #ifdef _WIN32