aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/Ngct/IService.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Ngct/IService.cs')
-rw-r--r--Ryujinx.HLE/HOS/Services/Ngct/IService.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Ngct/IService.cs b/Ryujinx.HLE/HOS/Services/Ngct/IService.cs
index c12a8de8..4499aac8 100644
--- a/Ryujinx.HLE/HOS/Services/Ngct/IService.cs
+++ b/Ryujinx.HLE/HOS/Services/Ngct/IService.cs
@@ -7,14 +7,14 @@ namespace Ryujinx.HLE.HOS.Services.Ngct
{
public IService(ServiceCtx context) { }
- [Command(0)]
+ [CommandHipc(0)]
// Match(buffer<string, 9>) -> b8
public ResultCode Match(ServiceCtx context)
{
return NgctServer.Match(context);
}
- [Command(1)]
+ [CommandHipc(1)]
// Filter(buffer<string, 9>) -> buffer<filtered_string, 10>
public ResultCode Filter(ServiceCtx context)
{