aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/Friend/IServiceCreator.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Friend/IServiceCreator.cs')
-rw-r--r--Ryujinx.HLE/HOS/Services/Friend/IServiceCreator.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Friend/IServiceCreator.cs b/Ryujinx.HLE/HOS/Services/Friend/IServiceCreator.cs
index 4e73c3f2..d5258a82 100644
--- a/Ryujinx.HLE/HOS/Services/Friend/IServiceCreator.cs
+++ b/Ryujinx.HLE/HOS/Services/Friend/IServiceCreator.cs
@@ -18,7 +18,7 @@ namespace Ryujinx.HLE.HOS.Services.Friend
_permissionLevel = permissionLevel;
}
- [CommandHipc(0)]
+ [CommandCmif(0)]
// CreateFriendService() -> object<nn::friends::detail::ipc::IFriendService>
public ResultCode CreateFriendService(ServiceCtx context)
{
@@ -27,7 +27,7 @@ namespace Ryujinx.HLE.HOS.Services.Friend
return ResultCode.Success;
}
- [CommandHipc(1)] // 2.0.0+
+ [CommandCmif(1)] // 2.0.0+
// CreateNotificationService(nn::account::Uid userId) -> object<nn::friends::detail::ipc::INotificationService>
public ResultCode CreateNotificationService(ServiceCtx context)
{
@@ -43,7 +43,7 @@ namespace Ryujinx.HLE.HOS.Services.Friend
return ResultCode.Success;
}
- [CommandHipc(2)] // 4.0.0+
+ [CommandCmif(2)] // 4.0.0+
// CreateDaemonSuspendSessionService() -> object<nn::friends::detail::ipc::IDaemonSuspendSessionService>
public ResultCode CreateDaemonSuspendSessionService(ServiceCtx context)
{