Fix helper 2
This commit is contained in:
parent
50226692bd
commit
02efe69711
3 changed files with 7 additions and 11 deletions
|
@ -173,7 +173,7 @@ namespace Ryujinx.HLE.HOS.Services.Acc
|
||||||
/*
|
/*
|
||||||
if (nn::arp::detail::IReader::GetApplicationLaunchProperty() == 0xCC9D) // InvalidProcessId
|
if (nn::arp::detail::IReader::GetApplicationLaunchProperty() == 0xCC9D) // InvalidProcessId
|
||||||
{
|
{
|
||||||
_applicationLaunchProperty = ApplicationLaunchProperty.GetDefault();
|
_applicationLaunchProperty = ApplicationLaunchProperty.Default;
|
||||||
|
|
||||||
return ResultCode.InvalidArgument;
|
return ResultCode.InvalidArgument;
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,15 +10,12 @@ namespace Ryujinx.HLE.HOS.Services.Arp
|
||||||
public byte UpdateGameStorageId;
|
public byte UpdateGameStorageId;
|
||||||
public short Padding;
|
public short Padding;
|
||||||
|
|
||||||
public static ApplicationLaunchProperty GetDefault()
|
public static readonly ApplicationLaunchProperty Default = new ApplicationLaunchProperty
|
||||||
{
|
{
|
||||||
return new ApplicationLaunchProperty
|
TitleId = 0x00,
|
||||||
{
|
Version = 0x00,
|
||||||
TitleId = 0x00,
|
BaseGameStorageId = (byte)StorageId.NandSystem,
|
||||||
Version = 0x00,
|
UpdateGameStorageId = (byte)StorageId.None
|
||||||
BaseGameStorageId = (byte)StorageId.NandSystem,
|
};
|
||||||
UpdateGameStorageId = (byte)StorageId.None
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,7 +1,6 @@
|
||||||
using Ryujinx.HLE.FileSystem;
|
using Ryujinx.HLE.FileSystem;
|
||||||
using Ryujinx.HLE.Utilities;
|
using Ryujinx.HLE.Utilities;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
|
||||||
|
|
||||||
namespace Ryujinx.HLE.HOS.Services.Arp
|
namespace Ryujinx.HLE.HOS.Services.Arp
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue