Buildfix
This commit is contained in:
parent
4046146164
commit
fbc825a73d
1 changed files with 1 additions and 1 deletions
|
@ -569,7 +569,7 @@ u32 sceKernelGetThreadmanIdList(u32 type, u32 readBufPtr, u32 readBufSize, u32 i
|
|||
return SCE_KERNEL_ERROR_ILLEGAL_ARGUMENT;
|
||||
}
|
||||
|
||||
for (size_t i = 0; i < std::min(readBufSize, threadqueue.size()); i++)
|
||||
for (size_t i = 0; i < std::min((size_t)readBufSize, threadqueue.size()); i++)
|
||||
{
|
||||
Memory::Write_U32(threadqueue[i]->GetUID(), readBufPtr + i * 4);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue