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

@ -57,7 +57,7 @@ namespace Ryujinx.Core.OsHle.Services.Sm
return 0;
}
KSession Session = new KSession(ServiceFactory.MakeService(Name));
KSession Session = new KSession(ServiceFactory.MakeService(Name), Name);
int Handle = Context.Process.HandleTable.OpenHandle(Session);