From 30d5bbfa0cd15a6b961724b14539c38f5ad83670 Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Thu, 19 Oct 2023 09:36:01 -0700 Subject: [PATCH] Always continue on first-chance exceptions --- IDEHelper/WinDebugger.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IDEHelper/WinDebugger.cpp b/IDEHelper/WinDebugger.cpp index 7cb2eb01..84a91ed6 100644 --- a/IDEHelper/WinDebugger.cpp +++ b/IDEHelper/WinDebugger.cpp @@ -2717,7 +2717,7 @@ bool WinDebugger::DoUpdate() bool handled = false; //TODO: Use a user-defined filter here to determine whether to stop or continue - if ((!isSystemException) && (isFirstChance)) + if (isFirstChance) { if (exceptionRecord->ExceptionCode == 0x406D1388) // Visual C {