Show service short name for unimplemented commands

This commit is contained in:
gdkchan 2018-04-06 02:38:59 -03:00
parent 081ede2a9a
commit a7ecf6dd2d
4 changed files with 11 additions and 6 deletions

View file

@ -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()