Merge pull request #13368 from shenweip/thread

Reschedule after resuming thread from suspend.
This commit is contained in:
Henrik Rydgård 2020-09-01 13:31:09 +02:00 committed by GitHub
commit e8c2fce1b1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2802,6 +2802,7 @@ int sceKernelResumeThread(SceUID threadID)
// If it was dormant, waiting, etc. before we don't flip its ready state.
if (t->nt.status == 0)
__KernelChangeReadyState(t, threadID, true);
hleReSchedule("resume thread from suspend");
return 0;
}
else