aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Core/OsHle/Svc
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2018-04-06 02:38:59 -0300
committergdkchan <gab.dark.100@gmail.com>2018-04-06 02:38:59 -0300
commita7ecf6dd2dcbe4ff03118435d9d203bcc8500718 (patch)
tree55fae777165563641029a1ece0e04eb0493f3465 /Ryujinx.Core/OsHle/Svc
parent081ede2a9a94c985831dad8f5782bb99ceb9e766 (diff)
Show service short name for unimplemented commands
Diffstat (limited to 'Ryujinx.Core/OsHle/Svc')
-rw-r--r--Ryujinx.Core/OsHle/Svc/SvcSystem.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.Core/OsHle/Svc/SvcSystem.cs b/Ryujinx.Core/OsHle/Svc/SvcSystem.cs
index c9e992d5..0b5c97e3 100644
--- a/Ryujinx.Core/OsHle/Svc/SvcSystem.cs
+++ b/Ryujinx.Core/OsHle/Svc/SvcSystem.cs
@@ -153,7 +153,7 @@ namespace Ryujinx.Core.OsHle.Svc
//TODO: Validate that app has perms to access the service, and that the service
//actually exists, return error codes otherwise.
- KSession Session = new KSession(ServiceFactory.MakeService(Name));
+ KSession Session = new KSession(ServiceFactory.MakeService(Name), Name);
ulong Handle = (ulong)Process.HandleTable.OpenHandle(Session);