mirror of https://github.com/x64dbg/TitanEngine
Merge f425de392c into ccac889f27
This commit is contained in:
commit
206bac392c
|
|
@ -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)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue