[IApplicationFunctions/INvDrvServices] Stub GetPseudoDeviceId, FinishInitialize and add more pctl service names. (#127)

* [INvDrvServices] Stub FinishInitialize

* [IApplicationFunctions] Stub GetPseudoDeviceId

* I need to proofread my shit...

* Also add more pctl service names
This commit is contained in:
Starlet 2018-05-25 17:33:09 -04:00 committed by gdkchan
parent 30829fce52
commit cb1cf489f9
3 changed files with 38 additions and 10 deletions

View file

@ -97,9 +97,18 @@ namespace Ryujinx.Core.OsHle.Services
case "nvdrv:a":
return new INvDrvServices();
case "pctl:s":
return new IParentalControlServiceFactory();
case "pctl:r":
return new IParentalControlServiceFactory();
case "pctl:a":
return new IParentalControlServiceFactory();
case "pctl":
return new IParentalControlServiceFactory();
case "pl:u":
return new ISharedFontManager();
@ -146,4 +155,4 @@ namespace Ryujinx.Core.OsHle.Services
throw new NotImplementedException(Name);
}
}
}
}