Buildfix for Mac / iOS.

This commit is contained in:
Unknown W. Brackets 2013-05-26 19:02:40 -07:00
parent 66129b69e8
commit f397f83b4f
2 changed files with 2 additions and 2 deletions

View file

@ -845,7 +845,7 @@ u32 __KernelInterruptReturnAddress()
return intReturnHackAddr;
}
u32 __KernelSetThreadRA(SceUID threadID, int nid)
u32 __KernelSetThreadRA(SceUID threadID, u32 nid)
{
u32 newRA;
switch (nid)

View file

@ -235,7 +235,7 @@ bool __KernelSwitchToThread(SceUID threadID, const char *reason);
// Set a thread's return address to a specific FakeSyscall nid.
// Discards old RA. Only useful for special threads that do special things on exit.
u32 __KernelSetThreadRA(SceUID threadID, int nid);
u32 __KernelSetThreadRA(SceUID threadID, u32 nid);
// A call into game code. These can be pending on a thread.
// Similar to Callback-s (NOT CallbackInfos) in JPCSP.