aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/Exceptions/ServiceNotImplementedException.cs
diff options
context:
space:
mode:
authorjduncanator <1518948+jduncanator@users.noreply.github.com>2019-01-21 13:04:52 +1100
committergdkchan <gab.dark.100@gmail.com>2019-01-21 00:04:52 -0200
commit1af6c31dc02c80da3d0ca08df925a9b71cf03eb7 (patch)
tree3854ad4e1bfe607ce7c3ab8911dc8850a3ba4952 /Ryujinx.HLE/Exceptions/ServiceNotImplementedException.cs
parent22bacc618815170c0d186a82e1ea4558e36b7063 (diff)
Resolve build merge conflict (#559)
Diffstat (limited to 'Ryujinx.HLE/Exceptions/ServiceNotImplementedException.cs')
-rw-r--r--Ryujinx.HLE/Exceptions/ServiceNotImplementedException.cs7
1 files changed, 2 insertions, 5 deletions
diff --git a/Ryujinx.HLE/Exceptions/ServiceNotImplementedException.cs b/Ryujinx.HLE/Exceptions/ServiceNotImplementedException.cs
index 18f41910..d5ea3bbf 100644
--- a/Ryujinx.HLE/Exceptions/ServiceNotImplementedException.cs
+++ b/Ryujinx.HLE/Exceptions/ServiceNotImplementedException.cs
@@ -16,9 +16,8 @@ namespace Ryujinx.HLE.Exceptions
[Serializable]
internal class ServiceNotImplementedException : Exception
{
- public KSession Session { get; }
- public IpcMessage Request { get; }
public ServiceCtx Context { get; }
+ public IpcMessage Request { get; }
public ServiceNotImplementedException(ServiceCtx context)
: this(context, "The service call is not implemented.")
@@ -28,7 +27,6 @@ namespace Ryujinx.HLE.Exceptions
: base(message)
{
Context = context;
- Session = context.Session;
Request = context.Request;
}
@@ -36,7 +34,6 @@ namespace Ryujinx.HLE.Exceptions
: base(message, inner)
{
Context = context;
- Session = context.Session;
Request = context.Request;
}
@@ -74,7 +71,7 @@ namespace Ryujinx.HLE.Exceptions
if (ipcMethod != null)
{
- sb.AppendLine($"Service Command: {Session.ServiceName} {ipcService.GetType().Name}: {ipcCommandId} ({ipcMethod.Method.Name})");
+ sb.AppendLine($"Service Command: {ipcService.GetType().FullName}: {ipcCommandId} ({ipcMethod.Method.Name})");
sb.AppendLine();
}
}