Compliant with review.

This commit is contained in:
Starlet 2018-06-12 20:51:59 -04:00
parent f163fb0c0f
commit da92121d00
2 changed files with 12 additions and 8 deletions

View file

@ -27,11 +27,7 @@ namespace Ryujinx.HLE.OsHle.Services.Pctl
public long CreateServiceWithoutInitialize(ServiceCtx Context)
{
IParentalControlService Service = new IParentalControlService();
Service.Initialized = true;
MakeObject(Context, Service);
MakeObject(Context, new IParentalControlService(false));
return 0;
}