Also add more pctl service names

This commit is contained in:
Starlet 2018-05-23 18:01:37 -04:00 committed by GitHub
parent d399ca8e44
commit 169835c27b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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);
}
}
}
}