1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-09 03:52:19 +02:00

Fixes for debugger, -run and -new support for BeefBuild

This commit is contained in:
Brian Fiete 2019-09-22 08:25:38 -07:00
parent f534da77ff
commit eb139fd33c
8 changed files with 98 additions and 64 deletions

View file

@ -1431,8 +1431,18 @@ bool WinDebugger::DoUpdate()
}
if (IsMiniDumpDebugger())
{
Sleep(20);
{
//
{
AutoCrit autoCrit(mDebugManager->mCritSect);
if (mRunState == RunState_Terminating)
{
mRunState = RunState_Terminated;
return false;
}
}
Sleep(20);
return false;
}