mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 22:25:41 +12:00
Don't sleep on service handles for the time being
This commit is contained in:
parent
8d6c222db7
commit
2ab37b3d4a
1 changed files with 8 additions and 0 deletions
|
@ -153,6 +153,14 @@ void Kernel::waitSynchronizationN() {
|
|||
if (handleCount <= 0)
|
||||
Helpers::panic("WaitSyncN: Invalid handle count");
|
||||
|
||||
// Temporary hack: Until we implement service sessions properly, don't bother sleeping when WaitSyncN targets a service handle
|
||||
// This is necessary because a lot of games use WaitSyncN with eg the CECD service
|
||||
if (handleCount == 1 && KernelHandles::isServiceHandle(mem.read32(handles))) {
|
||||
regs[0] = Result::Success;
|
||||
regs[1] = 0;
|
||||
return;
|
||||
}
|
||||
|
||||
using WaitObject = std::pair<Handle, KernelObject*>;
|
||||
std::vector<WaitObject> waitObjects(handleCount);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue