Don't step when the thread is blocked
This commit is contained in:
parent
de4ec65bd7
commit
5d42332d75
1 changed files with 2 additions and 1 deletions
|
@ -1443,7 +1443,8 @@ namespace Ryujinx.HLE.HOS.Kernel.Threading
|
|||
lock (_activityOperationLock)
|
||||
{
|
||||
if (_debugState != (int)DebugState.Stopped
|
||||
|| (_forcePauseFlags & ThreadSchedState.ThreadPauseFlag) == 0)
|
||||
|| (_forcePauseFlags & ThreadSchedState.ThreadPauseFlag) == 0
|
||||
|| MutexOwner != null)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue