Fix some x64 type warnings.

This commit is contained in:
Unknown W. Brackets 2013-02-24 10:38:30 -08:00
parent 64c42ffaf2
commit de7ada1982
9 changed files with 15 additions and 15 deletions

View file

@ -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);