mirror of
https://github.com/Atmosphere-NX/Atmosphere-libs.git
synced 2025-06-21 11:02:45 +02:00
ProcessManager: Fix Synchronization. Now works on 1.0.0 hardware.
This commit is contained in:
parent
24860d83a9
commit
389a69b79f
@ -12,7 +12,7 @@ class SystemEvent : public IEvent {
|
||||
SystemEvent(EventCallback callback) : IEvent(0, callback) {
|
||||
Handle wait_h;
|
||||
Handle sig_h;
|
||||
if (R_FAILED(svcCreateEvent(&wait_h, &sig_h))) {
|
||||
if (R_FAILED(svcCreateEvent(&sig_h, &wait_h))) {
|
||||
/* TODO: Panic. */
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user