Update all the HLE tables with arg and ret info.

This commit is contained in:
Unknown W. Brackets
2015-03-22 20:51:55 -07:00
parent 1b2b5f41a9
commit fcf0518223
57 changed files with 1571 additions and 1548 deletions
+2 -2
View File
@@ -2553,11 +2553,11 @@ SceUID sceKernelGetThreadId()
return currentThread;
}
void sceKernelGetThreadCurrentPriority()
int sceKernelGetThreadCurrentPriority()
{
u32 retVal = __GetCurrentThread()->nt.currentPriority;
DEBUG_LOG(SCEKERNEL,"%i = sceKernelGetThreadCurrentPriority()", retVal);
RETURN(retVal);
return retVal;
}
int sceKernelChangeCurrentThreadAttr(u32 clearAttr, u32 setAttr)