ProcessManager: Fix Synchronization. Now works on 1.0.0 hardware.

This commit is contained in:
Michael Scire 2018-05-06 22:59:54 -06:00
parent 24860d83a9
commit 389a69b79f

View File

@ -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. */
}