mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-08-11 04:37:49 +02: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