diff options
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Ns/IServiceGetterInterface.cs')
-rw-r--r-- | Ryujinx.HLE/HOS/Services/Ns/IServiceGetterInterface.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Ns/IServiceGetterInterface.cs b/Ryujinx.HLE/HOS/Services/Ns/IServiceGetterInterface.cs index a16f76f4..1d7fa2c3 100644 --- a/Ryujinx.HLE/HOS/Services/Ns/IServiceGetterInterface.cs +++ b/Ryujinx.HLE/HOS/Services/Ns/IServiceGetterInterface.cs @@ -9,7 +9,7 @@ namespace Ryujinx.HLE.HOS.Services.Ns { public IServiceGetterInterface(ServiceCtx context) { } - [Command(7996)] + [CommandHipc(7996)] // GetApplicationManagerInterface() -> object<nn::ns::detail::IApplicationManagerInterface> public ResultCode GetApplicationManagerInterface(ServiceCtx context) { @@ -18,7 +18,7 @@ namespace Ryujinx.HLE.HOS.Services.Ns return ResultCode.Success; } - [Command(7989)] + [CommandHipc(7989)] // GetReadOnlyApplicationControlDataInterface() -> object<nn::ns::detail::IReadOnlyApplicationControlDataInterface> public ResultCode GetReadOnlyApplicationControlDataInterface(ServiceCtx context) { |