From 7fbcc0eda60bcc5e631bb1ce49cdb74ad151ea23 Mon Sep 17 00:00:00 2001 From: Ac_K Date: Thu, 27 Jun 2019 13:22:46 +0200 Subject: [PATCH] InvalidUuid > InvalidArgument 2 Co-Authored-By: Thomas Guillemard --- Ryujinx.HLE/HOS/Services/Friend/IServiceCreator.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Ryujinx.HLE/HOS/Services/Friend/IServiceCreator.cs b/Ryujinx.HLE/HOS/Services/Friend/IServiceCreator.cs index 033965d9e8..81281dc2d2 100644 --- a/Ryujinx.HLE/HOS/Services/Friend/IServiceCreator.cs +++ b/Ryujinx.HLE/HOS/Services/Friend/IServiceCreator.cs @@ -37,7 +37,7 @@ namespace Ryujinx.HLE.HOS.Services.Friend if (userId.IsNull) { - return MakeError(ErrorModule.Friends, FriendErr.InvalidUuid); + return MakeError(ErrorModule.Friends, FriendErr.InvalidArgument); } MakeObject(context, new INotificationService(userId)); @@ -53,4 +53,4 @@ namespace Ryujinx.HLE.HOS.Services.Friend return 0; } } -} \ No newline at end of file +}