From 3ec8691590f367a305b3f5d509bcee12a05942e1 Mon Sep 17 00:00:00 2001 From: Alex <93446519+AlexOn1ine@users.noreply.github.com> Date: Fri, 14 Jun 2024 11:15:18 +0200 Subject: [PATCH] Fixing my mess [correct hex in speciesInfo] (#4800) --- include/pokemon.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/pokemon.h b/include/pokemon.h index 112cfc282e..63a125f536 100644 --- a/include/pokemon.h +++ b/include/pokemon.h @@ -349,7 +349,7 @@ struct Evolution u16 targetSpecies; }; -struct SpeciesInfo /*0xC0*/ +struct SpeciesInfo /*0xC4*/ { /* 0x00 */ u8 baseHP; /* 0x01 */ u8 baseAttack; @@ -452,8 +452,8 @@ struct SpeciesInfo /*0xC0*/ #if OW_POKEMON_OBJECT_EVENTS /* 0x98 */ struct ObjectEventGraphicsInfo overworldData; #if OW_PKMN_OBJECTS_SHARE_PALETTES == FALSE - /* 0xB8 */ const void* overworldPalette; - /* 0xBC */ const void* overworldShinyPalette; + /* 0xBC */ const void* overworldPalette; + /* 0xC0 */ const void* overworldShinyPalette; #endif //OW_PKMN_OBJECTS_SHARE_PALETTES #endif //OW_POKEMON_OBJECT_EVENTS };