Address gdkchan's comment

This commit is contained in:
Mary 2022-08-31 19:41:43 +02:00 committed by Mary-nyan
parent f6a7309b14
commit 730d2f4b9b
2 changed files with 12 additions and 12 deletions

View file

@ -15,12 +15,12 @@ namespace Ryujinx.HLE.HOS.Services.Account.Acc
// GetNetworkServiceLicenseKind() -> nn::account::NetworkServiceLicenseKind
public ResultCode GetNetworkServiceLicenseKind(ServiceCtx context)
{
if (!_asyncExecution.IsInitialized)
if (!AsyncExecution.IsInitialized)
{
return ResultCode.AsyncExecutionNotInitialized;
}
if (!_asyncExecution.SystemEvent.ReadableEvent.IsSignaled())
if (!AsyncExecution.SystemEvent.ReadableEvent.IsSignaled())
{
return ResultCode.Unknown41;
}