sceKernelResumeDispatchThread() always returns 0.
This commit is contained in:
parent
64445e0c8d
commit
783df9f0c3
1 changed files with 3 additions and 3 deletions
|
@ -1704,7 +1704,7 @@ u32 sceKernelSuspendDispatchThread()
|
|||
{
|
||||
u32 oldDispatchEnabled = dispatchEnabled;
|
||||
dispatchEnabled = false;
|
||||
DEBUG_LOG(HLE,"%i=sceKernelSuspendDispatchThread()", oldDispatchEnabled);
|
||||
DEBUG_LOG(HLE, "%i=sceKernelSuspendDispatchThread()", oldDispatchEnabled);
|
||||
return oldDispatchEnabled;
|
||||
}
|
||||
|
||||
|
@ -1712,9 +1712,9 @@ u32 sceKernelResumeDispatchThread(u32 enabled)
|
|||
{
|
||||
u32 oldDispatchEnabled = dispatchEnabled;
|
||||
dispatchEnabled = enabled != 0;
|
||||
DEBUG_LOG(HLE,"%i=sceKernelResumeDispatchThread(%i)", oldDispatchEnabled, enabled);
|
||||
DEBUG_LOG(HLE, "sceKernelResumeDispatchThread(%i) - from %i", enabled, oldDispatchEnabled);
|
||||
hleReSchedule("dispatch resumed");
|
||||
return oldDispatchEnabled;
|
||||
return 0;
|
||||
}
|
||||
|
||||
int sceKernelRotateThreadReadyQueue(int priority)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue