From 0b149f6b6a173b3196a9e973e761eb0b1f85988e Mon Sep 17 00:00:00 2001 From: Ninjdai <65647523+Ninjdai1@users.noreply.github.com> Date: Sun, 14 Jan 2024 16:49:59 +0100 Subject: [PATCH] Fixed move, species and ability counts to u16s in RHH header (#3992) --- src/rom_header_rhh.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/rom_header_rhh.c b/src/rom_header_rhh.c index 03767b711d..13e9856b70 100644 --- a/src/rom_header_rhh.c +++ b/src/rom_header_rhh.c @@ -17,10 +17,10 @@ struct RHHRomHeader /*0x07*/ u8 expansionVersionMinor; /*0x08*/ u8 expansionVersionPatch; /*0x09*/ u8 expansionVersionFlags; - /*0x0C*/ u32 movesCount; - /*0x10*/ u32 numSpecies; - /*0x14*/ u32 abilitiesCount; - /*0x18*/ const struct Ability *abilities; + /*0x0A*/ u16 movesCount; + /*0x0C*/ u16 numSpecies; + /*0x0E*/ u16 abilitiesCount; + /*0x10*/ const struct Ability *abilities; }; __attribute__((section(".text.consts")))