diff --git a/Ryujinx.HLE/HOS/Services/Arp/ApplicationLaunchProperty.cs b/Ryujinx.HLE/HOS/Services/Arp/ApplicationLaunchProperty.cs index 1eba0eff56..501484d3c8 100644 --- a/Ryujinx.HLE/HOS/Services/Arp/ApplicationLaunchProperty.cs +++ b/Ryujinx.HLE/HOS/Services/Arp/ApplicationLaunchProperty.cs @@ -10,12 +10,18 @@ namespace Ryujinx.HLE.HOS.Services.Arp public byte UpdateGameStorageId; public short Padding; - public static readonly ApplicationLaunchProperty Default = new ApplicationLaunchProperty + public static ApplicationLaunchProperty Default { - TitleId = 0x00, - Version = 0x00, - BaseGameStorageId = (byte)StorageId.NandSystem, - UpdateGameStorageId = (byte)StorageId.None - }; + get + { + return new ApplicationLaunchProperty + { + TitleId = 0x00, + Version = 0x00, + BaseGameStorageId = (byte)StorageId.NandSystem, + UpdateGameStorageId = (byte)StorageId.None + }; + } + } } } \ No newline at end of file