Fix PCTL initialized log.

This commit is contained in:
Starlet 2019-04-20 12:17:55 -04:00
commit 981616b362

View file

@ -31,9 +31,12 @@ namespace Ryujinx.HLE.HOS.Services.Pctl
_initialized = true; _initialized = true;
} }
else else
{
if (_initialized)
{ {
Logger.PrintWarning(LogClass.ServicePctl, "Service is already initialized!"); Logger.PrintWarning(LogClass.ServicePctl, "Service is already initialized!");
} }
}
return 0; return 0;
} }