From f00153ccb4682ad2d190c5191dd1e8e734cfa2aa Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Wed, 28 Dec 2022 21:39:58 +0100 Subject: [PATCH] Rename exception filter --- r5dev/public/utility/crashhandler.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } //-----------------------------------------------------------------------------