Fix a few minor typos + small reporting change.

This commit is contained in:
Unknown W. Brackets 2013-08-12 23:02:39 -07:00
parent 32218256d7
commit c8716d9a02
10 changed files with 21 additions and 13 deletions

View file

@ -2690,7 +2690,7 @@ int sceKernelResumeThread(SceUID threadID)
DEBUG_LOG(HLE, "sceKernelResumeThread(%d)", threadID);
t->nt.status &= ~THREADSTATUS_SUSPEND;
// If it was dormant, waiting, etc. before we don't flip it's ready state.
// If it was dormant, waiting, etc. before we don't flip its ready state.
if (t->nt.status == 0)
__KernelChangeReadyState(t, threadID, true);
return 0;