From 389a69b79f148818026d4898731cffc0f40300c5 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Sun, 6 May 2018 22:59:54 -0600 Subject: [PATCH] ProcessManager: Fix Synchronization. Now works on 1.0.0 hardware. --- include/stratosphere/systemevent.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/stratosphere/systemevent.hpp b/include/stratosphere/systemevent.hpp index 21545c5d..55b4acdc 100644 --- a/include/stratosphere/systemevent.hpp +++ b/include/stratosphere/systemevent.hpp @@ -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. */ }