Fix ApplicationLaunchProperty Default

This commit is contained in:
Ac_K 2019-09-10 06:46:52 +02:00
commit 85c043515c

View file

@ -10,12 +10,18 @@ namespace Ryujinx.HLE.HOS.Services.Arp
public byte UpdateGameStorageId; public byte UpdateGameStorageId;
public short Padding; public short Padding;
public static readonly ApplicationLaunchProperty Default = new ApplicationLaunchProperty public static ApplicationLaunchProperty Default
{ {
TitleId = 0x00, get
Version = 0x00, {
BaseGameStorageId = (byte)StorageId.NandSystem, return new ApplicationLaunchProperty
UpdateGameStorageId = (byte)StorageId.None {
}; TitleId = 0x00,
Version = 0x00,
BaseGameStorageId = (byte)StorageId.NandSystem,
UpdateGameStorageId = (byte)StorageId.None
};
}
}
} }
} }