mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-08-01 10:39:50 -06:00
Show service short name for unimplemented commands
This commit is contained in:
@ -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);
|
||||
|
||||
|
Reference in New Issue
Block a user