From 26ba65c7a7afff16c1ad4d7a51889d39784f2b1f Mon Sep 17 00:00:00 2001 From: Eduardo Quezada Date: Thu, 21 Mar 2024 10:56:29 -0300 Subject: [PATCH] Fixed species flag padding (#4291) --- include/pokemon.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/pokemon.h b/include/pokemon.h index 984a86b1ae..0c3023a820 100644 --- a/include/pokemon.h +++ b/include/pokemon.h @@ -438,7 +438,7 @@ struct SpeciesInfo /*0x8C*/ u32 allPerfectIVs:1; u32 dexForceRequired:1; // This species will be taken into account for Pokédex ratings even if they have the "isMythical" flag set. u32 tmIlliterate:1; // This species will be unable to learn the universal moves. - u32 padding4:16; + u32 padding4:15; // Move Data /* 0x80 */ const struct LevelUpMove *levelUpLearnset; /* 0x84 */ const u16 *teachableLearnset;