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
|
@ -104,7 +104,9 @@ namespace Ryujinx.Core.OsHle.Services
|
|||
}
|
||||
else
|
||||
{
|
||||
throw new NotImplementedException($"{Service.GetType().Name}: {CommandId}");
|
||||
string DbgMessage = $"{Context.Session.ServiceName} {Service.GetType().Name}: {CommandId}";
|
||||
|
||||
throw new NotImplementedException(DbgMessage);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -118,7 +120,7 @@ namespace Ryujinx.Core.OsHle.Services
|
|||
}
|
||||
else
|
||||
{
|
||||
KSession Session = new KSession(Obj);
|
||||
KSession Session = new KSession(Obj, Context.Session.ServiceName);
|
||||
|
||||
int Handle = Context.Process.HandleTable.OpenHandle(Session);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue