From e5051619b6f70a30e1d1d7fa48e6a07284284338 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Sun, 17 Apr 2022 20:11:05 -0700 Subject: [PATCH] loader: update for changes in 14.0.0 --- libstratosphere/include/stratosphere/ldr/ldr_types.hpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libstratosphere/include/stratosphere/ldr/ldr_types.hpp b/libstratosphere/include/stratosphere/ldr/ldr_types.hpp index 18302d28..328957aa 100644 --- a/libstratosphere/include/stratosphere/ldr/ldr_types.hpp +++ b/libstratosphere/include/stratosphere/ldr/ldr_types.hpp @@ -176,7 +176,7 @@ namespace ams::ldr { AcidFlag_DeprecatedUseSecureMemory = (1 << 2), AcidFlag_PoolPartitionShift = 2, - AcidFlag_PoolPartitionMask = (3 << AcidFlag_PoolPartitionShift), + AcidFlag_PoolPartitionMask = (0xF << AcidFlag_PoolPartitionShift), }; enum PoolPartition { @@ -198,7 +198,8 @@ namespace ams::ldr { u32 magic; u32 size; u8 version; - u8 reserved_209[3]; + u8 unknown_209; + u8 reserved_20A[2]; u32 flags; ncm::ProgramId program_id_min; ncm::ProgramId program_id_max;