From 308b0add47f49552f8a2d742ac6f3d2b123964be Mon Sep 17 00:00:00 2001 From: Zachary Lund Date: Tue, 24 Apr 2018 11:58:46 -0700 Subject: [PATCH] UI: Explicitly initialize the crash handler --- UI/obs-app.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/UI/obs-app.cpp b/UI/obs-app.cpp index 503e5e113..ab0e7560a 100644 --- a/UI/obs-app.cpp +++ b/UI/obs-app.cpp @@ -1887,6 +1887,7 @@ int main(int argc, char *argv[]) #endif #ifdef _WIN32 + obs_init_win32_crash_handler(); SetErrorMode(SEM_FAILCRITICALERRORS); load_debug_privilege(); base_set_crash_handler(main_crash_handler, nullptr);