summaryrefslogtreecommitdiff
path: root/include/pokemon.h
diff options
context:
space:
mode:
authorgolem galvanize <golemgalvanize@github.com>2018-02-09 17:47:01 -0500
committergolem galvanize <golemgalvanize@github.com>2018-02-09 17:47:01 -0500
commit99d0b4bbfd3fd05ba67aed1e7cf1b500b3ab594f (patch)
tree958dc97128c47cc0fce7f0a37fff5c1cac098802 /include/pokemon.h
parent368a63d5a74dee114797218d443b2cb0db68b9ea (diff)
parent387dbf48d0bbb22dc16158a1ee0d373c166c8438 (diff)
Merge branch 'master' of https://github.com/pret/pokeemerald into decompile_main_menu
Diffstat (limited to 'include/pokemon.h')
-rw-r--r--include/pokemon.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/include/pokemon.h b/include/pokemon.h
index f5d1683a2..ce3074a0b 100644
--- a/include/pokemon.h
+++ b/include/pokemon.h
@@ -510,18 +510,13 @@ struct Evolution
#define EVOS_PER_MON 5
-struct EvolutionData
-{
- struct Evolution evolutions[EVOS_PER_MON];
-};
-
extern u8 gPlayerPartyCount;
extern struct Pokemon gPlayerParty[PARTY_SIZE];
extern u8 gEnemyPartyCount;
extern struct Pokemon gEnemyParty[PARTY_SIZE];
extern const struct BaseStats gBaseStats[];
extern const u8 *const gItemEffectTable[];
-extern const struct EvolutionData gEvolutionTable[];
+extern const struct Evolution gEvolutionTable[][EVOS_PER_MON];
extern struct PokemonStorage* gPokemonStoragePtr;
extern const u32 gExperienceTables[][MAX_MON_LEVEL + 1];
extern const u16 *const gLevelUpLearnsets[];