ams: first attempt at 13.2.1 support

This commit is contained in:
Michael Scire 2022-01-19 16:28:32 -08:00
parent 275da52305
commit 4efa5d7dd0
6 changed files with 11 additions and 5 deletions

View file

@ -23,8 +23,8 @@ namespace ams::pkg2 {
constexpr inline int PayloadCount = 3;
constexpr inline int MinimumValidDataVersion = 0; /* We allow older package2 to load; this value is currently 0x13 in Nintendo's code. */
constexpr inline int CurrentBootloaderVersion = 0xF;
constexpr inline int MinimumValidDataVersion = 0; /* We allow older package2 to load; this value is currently 0x14 in Nintendo's code. */
constexpr inline int CurrentBootloaderVersion = 0x10;
struct Package2Meta {
using Magic = util::FourCC<'P','K','2','1'>;