Fix some x64 type warnings.
This commit is contained in:
parent
64c42ffaf2
commit
de7ada1982
9 changed files with 15 additions and 15 deletions
|
@ -1216,7 +1216,7 @@ u32 __KernelDeleteThread(SceUID threadID, int exitStatus, const char *reason, bo
|
|||
{
|
||||
// TODO: Unless they should be run before deletion?
|
||||
for (int i = 0; i < THREAD_CALLBACK_NUM_TYPES; i++)
|
||||
readyCallbacksCount -= t->readyCallbacks[i].size();
|
||||
readyCallbacksCount -= (int)t->readyCallbacks[i].size();
|
||||
}
|
||||
|
||||
return kernelObjects.Destroy<Thread>(threadID);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue