2018-06-02 22:46:09 +00:00
|
|
|
|
using System.IO;
|
|
|
|
|
|
2018-08-16 23:47:36 +00:00
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Am
|
2018-06-02 22:46:09 +00:00
|
|
|
|
{
|
|
|
|
|
class StorageHelper
|
|
|
|
|
{
|
|
|
|
|
private const uint LaunchParamsMagic = 0xc79497ca;
|
|
|
|
|
|
|
|
|
|
public static byte[] MakeLaunchParams()
|
|
|
|
|
{
|
|
|
|
|
//Size needs to be at least 0x88 bytes otherwise application errors.
|
2018-12-06 11:16:24 +00:00
|
|
|
|
using (MemoryStream ms = new MemoryStream())
|
2018-06-02 22:46:09 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
BinaryWriter writer = new BinaryWriter(ms);
|
2018-06-02 22:46:09 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
ms.SetLength(0x88);
|
2018-06-02 22:46:09 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
writer.Write(LaunchParamsMagic);
|
|
|
|
|
writer.Write(1); //IsAccountSelected? Only lower 8 bits actually used.
|
|
|
|
|
writer.Write(1L); //User Id Low (note: User Id needs to be != 0)
|
|
|
|
|
writer.Write(0L); //User Id High
|
2018-06-02 22:46:09 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
return ms.ToArray();
|
2018-06-02 22:46:09 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|