Skip to content

Commit

Permalink
Fixed move, species and ability counts to u16s in RHH header (#3992)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ninjdai1 authored Jan 14, 2024
1 parent 4846e2a commit 0b149f6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/rom_header_rhh.c
Original file line number Diff line number Diff line change
Expand Up @@ -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")))
Expand Down

0 comments on commit 0b149f6

Please sign in to comment.