mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2026-04-06 19:58:40 +00:00
Show service short name for unimplemented commands
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user