Accurate Service Names (ryubing/ryujinx!296)

See merge request ryubing/ryujinx!296
This commit is contained in:
LotP
2026-04-01 11:08:10 -05:00
parent 6fe7fb8dcb
commit 3ad4d4a692
5 changed files with 30 additions and 18 deletions

View File

@@ -37,7 +37,7 @@ namespace Ryujinx.Horizon
void RegisterService<T>() where T : IService
{
entries.Add(new ServiceEntry(T.Main, this, options));
entries.Add(new ServiceEntry(T.Main, this, options, typeof(T).Name));
}
RegisterService<ArpMain>();