Fix PCTL initialized log.

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

View file

@ -32,7 +32,10 @@ namespace Ryujinx.HLE.HOS.Services.Pctl
}
else
{
Logger.PrintWarning(LogClass.ServicePctl, "Service is already initialized!");
if (_initialized)
{
Logger.PrintWarning(LogClass.ServicePctl, "Service is already initialized!");
}
}
return 0;