소스 검색

Always continue on first-chance exceptions

Brian Fiete 1 년 전
부모
커밋
30d5bbfa0c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      IDEHelper/WinDebugger.cpp

+ 1 - 1
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
 						{