diff options
author | Kurausukun <lord.uber1@gmail.com> | 2021-05-31 00:19:26 -0400 |
---|---|---|
committer | huderlem <huderlem@gmail.com> | 2021-05-31 08:20:46 -0500 |
commit | 2bbaf71998337cba3c912143302f816b4116e851 (patch) | |
tree | 9606dd8751182d185d5903494f48002775dda2c8 /include | |
parent | 2705f2e5f44980f368d30845215e28ae5ea5c595 (diff) |
[LEAK-INFORMED] fix CreateShedinja fakematch
info: the header change is required. accesses to the struct need to be
treated as non-const, even though the array must be const. thanks to
jiang for figuring this out.
Diffstat (limited to 'include')
-rw-r--r-- | include/pokemon.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/pokemon.h b/include/pokemon.h index 82cdefeac..3565bd966 100644 --- a/include/pokemon.h +++ b/include/pokemon.h @@ -258,7 +258,6 @@ extern const u8 gFacilityClassToPicIndex[]; extern const u8 gFacilityClassToTrainerClass[]; extern const struct BaseStats gBaseStats[]; extern const u8 *const gItemEffectTable[]; -extern const struct Evolution gEvolutionTable[][EVOS_PER_MON]; extern const u32 gExperienceTables[][MAX_LEVEL + 1]; extern const u16 *const gLevelUpLearnsets[]; extern const u8 gPPUpGetMask[]; |