1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 11:38:21 +02:00

Always continue on first-chance exceptions

This commit is contained in:
Brian Fiete 2023-10-19 09:36:01 -07:00
parent f0a31a0f55
commit 30d5bbfa0c

View file

@ -2717,7 +2717,7 @@ bool WinDebugger::DoUpdate()
bool handled = false; bool handled = false;
//TODO: Use a user-defined filter here to determine whether to stop or continue //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 if (exceptionRecord->ExceptionCode == 0x406D1388) // Visual C
{ {