Show service short name for unimplemented commands
This commit is contained in:
parent
081ede2a9a
commit
a7ecf6dd2d
4 changed files with 11 additions and 6 deletions
|
@ -7,9 +7,12 @@ namespace Ryujinx.Core.OsHle.Handles
|
|||
{
|
||||
public IpcService Service { get; private set; }
|
||||
|
||||
public KSession(IpcService Service)
|
||||
public string ServiceName { get; private set; }
|
||||
|
||||
public KSession(IpcService Service, string ServiceName)
|
||||
{
|
||||
this.Service = Service;
|
||||
this.Service = Service;
|
||||
this.ServiceName = ServiceName;
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue