diff options
author | DizzyEggg <jajkodizzy@wp.pl> | 2018-11-19 01:03:14 +0100 |
---|---|---|
committer | DizzyEggg <jajkodizzy@wp.pl> | 2018-11-19 01:03:14 +0100 |
commit | 95d3c180cc13b228dc10e6503b4a30c60f164f48 (patch) | |
tree | 47c07d0629df8edd2861607d045b2a88db8ee8e8 /src/pokedex.c | |
parent | 963989d760a09eab46607efe1cbc1029f00e1842 (diff) |
clean up variables in files
Diffstat (limited to 'src/pokedex.c')
-rw-r--r-- | src/pokedex.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/pokedex.c b/src/pokedex.c index 93ff06876..1405393c1 100644 --- a/src/pokedex.c +++ b/src/pokedex.c @@ -29,14 +29,17 @@ #include "constants/songs.h" #include "constants/species.h" +extern u8 gUnknown_030061EC; + +// EWRAM static EWRAM_DATA struct PokedexView *gUnknown_02039B4C = NULL; static EWRAM_DATA u16 gUnknown_02039B50 = 0; static EWRAM_DATA u8 gUnknown_02039B52 = 0; static EWRAM_DATA struct PokedexListItem *gUnknown_02039B54 = NULL; +// IWRAM common u8 gUnknown_030060B0; -MainCallback gUnknown_030060B4; -u8 gUnknown_030061EC; +void (*gUnknown_030060B4)(void); struct PokedexEntry { |