mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-07 22:58:39 +00:00
Resolve build merge conflict (#559)
This commit is contained in:
parent
22bacc6188
commit
1af6c31dc0
|
@ -16,9 +16,8 @@ namespace Ryujinx.HLE.Exceptions
|
||||||
[Serializable]
|
[Serializable]
|
||||||
internal class ServiceNotImplementedException : Exception
|
internal class ServiceNotImplementedException : Exception
|
||||||
{
|
{
|
||||||
public KSession Session { get; }
|
|
||||||
public IpcMessage Request { get; }
|
|
||||||
public ServiceCtx Context { get; }
|
public ServiceCtx Context { get; }
|
||||||
|
public IpcMessage Request { get; }
|
||||||
|
|
||||||
public ServiceNotImplementedException(ServiceCtx context)
|
public ServiceNotImplementedException(ServiceCtx context)
|
||||||
: this(context, "The service call is not implemented.")
|
: this(context, "The service call is not implemented.")
|
||||||
|
@ -28,7 +27,6 @@ namespace Ryujinx.HLE.Exceptions
|
||||||
: base(message)
|
: base(message)
|
||||||
{
|
{
|
||||||
Context = context;
|
Context = context;
|
||||||
Session = context.Session;
|
|
||||||
Request = context.Request;
|
Request = context.Request;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -36,7 +34,6 @@ namespace Ryujinx.HLE.Exceptions
|
||||||
: base(message, inner)
|
: base(message, inner)
|
||||||
{
|
{
|
||||||
Context = context;
|
Context = context;
|
||||||
Session = context.Session;
|
|
||||||
Request = context.Request;
|
Request = context.Request;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -74,7 +71,7 @@ namespace Ryujinx.HLE.Exceptions
|
||||||
|
|
||||||
if (ipcMethod != null)
|
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();
|
sb.AppendLine();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue