From 365701fe2f6762416b10ac70a27515786a095bdf Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Thu, 25 Jun 2020 05:21:03 -0700 Subject: [PATCH] Write crash info to OutputDebugString --- BeefySysLib/platform/win/CrashCatcher.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/BeefySysLib/platform/win/CrashCatcher.cpp b/BeefySysLib/platform/win/CrashCatcher.cpp index fad9f965..4c04e668 100644 --- a/BeefySysLib/platform/win/CrashCatcher.cpp +++ b/BeefySysLib/platform/win/CrashCatcher.cpp @@ -1094,6 +1094,8 @@ void CrashCatcher::Crash(const StringImpl& str) Init(); } + OutputDebugStr(str); + mBfpCritSect.Unlock();