diff --git a/r5dev/public/utility/crashhandler.cpp b/r5dev/public/utility/crashhandler.cpp index 89f546a5..ecf00ec4 100644 --- a/r5dev/public/utility/crashhandler.cpp +++ b/r5dev/public/utility/crashhandler.cpp @@ -531,7 +531,7 @@ void CCrashHandler::CreateMessageProcess() // Input : // Output : //----------------------------------------------------------------------------- -long __stdcall ExceptionFilter(EXCEPTION_POINTERS* pExceptionInfo) +long __stdcall BottomLevelExceptionFilter(EXCEPTION_POINTERS* pExceptionInfo) { g_CrashHandler->Start(); g_CrashHandler->SetExceptionPointers(pExceptionInfo); @@ -593,7 +593,7 @@ CCrashHandler::CCrashHandler() , m_bExceptionHandled(false) , m_bCrashMsgCreated(false) { - m_hExceptionHandler = AddVectoredExceptionHandler(TRUE, ExceptionFilter); + m_hExceptionHandler = AddVectoredExceptionHandler(TRUE, BottomLevelExceptionFilter); } //-----------------------------------------------------------------------------