mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 18:38:36 +00:00
f6a7309b14
This is needed to run Pokemon Legends Arceus 1.1.1 with guest internet enabled. The game still get stuck at loading screen.
39 lines
1.2 KiB
C#
39 lines
1.2 KiB
C#
using Ryujinx.HLE.HOS.Services.Account.Acc.AsyncContext;
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Account.Acc
|
|
{
|
|
class IAsyncNetworkServiceLicenseKindContext : IAsyncContext
|
|
{
|
|
private NetworkServiceLicenseKind? _serviceLicenseKind;
|
|
|
|
public IAsyncNetworkServiceLicenseKindContext(AsyncExecution asyncExecution, NetworkServiceLicenseKind? serviceLicenseKind) : base(asyncExecution)
|
|
{
|
|
_serviceLicenseKind = serviceLicenseKind;
|
|
}
|
|
|
|
[CommandHipc(100)]
|
|
// GetNetworkServiceLicenseKind() -> nn::account::NetworkServiceLicenseKind
|
|
public ResultCode GetNetworkServiceLicenseKind(ServiceCtx context)
|
|
{
|
|
if (!_asyncExecution.IsInitialized)
|
|
{
|
|
return ResultCode.AsyncExecutionNotInitialized;
|
|
}
|
|
|
|
if (!_asyncExecution.SystemEvent.ReadableEvent.IsSignaled())
|
|
{
|
|
return ResultCode.Unknown41;
|
|
}
|
|
|
|
if (!_serviceLicenseKind.HasValue)
|
|
{
|
|
return ResultCode.MissingNetworkServiceLicenseKind;
|
|
}
|
|
|
|
context.ResponseData.Write((uint)_serviceLicenseKind.Value);
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
}
|
|
}
|