From 80f37444074acdf7386d0100e2fadebacb9a934d Mon Sep 17 00:00:00 2001 From: Thog Date: Mon, 24 Jun 2019 22:03:42 +0200 Subject: [PATCH] Fix incorrect ordering of cmds in INotificationService --- Ryujinx.HLE/HOS/Services/Friend/INotificationService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Ryujinx.HLE/HOS/Services/Friend/INotificationService.cs b/Ryujinx.HLE/HOS/Services/Friend/INotificationService.cs index 72f5e77daf..8b684e6b8b 100644 --- a/Ryujinx.HLE/HOS/Services/Friend/INotificationService.cs +++ b/Ryujinx.HLE/HOS/Services/Friend/INotificationService.cs @@ -23,8 +23,8 @@ namespace Ryujinx.HLE.HOS.Services.Friend _commands = new Dictionary { { 0, GetEvent }, // 2.0.0+ - //{ 1, Pop }, // 2.0.0+ - //{ 2, Clear }, // 2.0.0+ + //{ 1, Clear }, // 2.0.0+ + //{ 2, Pop }, // 2.0.0+ }; _userId = userId;