diff options
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Ngct/IServiceWithManagementApi.cs')
-rw-r--r-- | Ryujinx.HLE/HOS/Services/Ngct/IServiceWithManagementApi.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Ngct/IServiceWithManagementApi.cs b/Ryujinx.HLE/HOS/Services/Ngct/IServiceWithManagementApi.cs index 371bec8b..5ad056ba 100644 --- a/Ryujinx.HLE/HOS/Services/Ngct/IServiceWithManagementApi.cs +++ b/Ryujinx.HLE/HOS/Services/Ngct/IServiceWithManagementApi.cs @@ -5,14 +5,14 @@ { public IServiceWithManagementApi(ServiceCtx context) { } - [CommandHipc(0)] + [CommandCmif(0)] // Match(buffer<string, 9>) -> b8 public ResultCode Match(ServiceCtx context) { return NgctServer.Match(context); } - [CommandHipc(1)] + [CommandCmif(1)] // Filter(buffer<string, 9>) -> buffer<filtered_string, 10> public ResultCode Filter(ServiceCtx context) { |