This commit is contained in:
Yemdust 2026-08-02 08:17:24 +08:00 committed by GitHub
commit 206bac392c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

@ -591,6 +591,7 @@ __declspec(dllexport) void TITCALL DebugLoop()
switch((LONG)DBGEvent.u.Exception.ExceptionRecord.ExceptionCode) switch((LONG)DBGEvent.u.Exception.ExceptionRecord.ExceptionCode)
{ {
case STATUS_BREAKPOINT: case STATUS_BREAKPOINT:
case STATUS_WX86_BREAKPOINT:
{ {
bool bFoundBreakPoint = false; bool bFoundBreakPoint = false;
BreakPointDetail FoundBreakPoint; BreakPointDetail FoundBreakPoint;
@ -736,6 +737,7 @@ __declspec(dllexport) void TITCALL DebugLoop()
break; break;
case STATUS_SINGLE_STEP: case STATUS_SINGLE_STEP:
case STATUS_WX86_SINGLE_STEP:
{ {
if(IsDbgReplyLaterSupported) if(IsDbgReplyLaterSupported)
{ {