diff options
author | Diegoisawesome <Diegoisawesome@users.noreply.github.com> | 2018-11-19 13:29:07 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-19 13:29:07 -0600 |
commit | 6acf6aed0486d090bf4f8e731189b9d4ad07dadb (patch) | |
tree | 14944f58ff26ce5d59ed1383e9550a6215cbc83e /src/pokedex.c | |
parent | 8f2ddf2997041bc813a32ac604002fcbb987e3a0 (diff) | |
parent | 58a1bba059a74203edb5d8819bf7af7e1171877a (diff) |
Merge pull request #391 from DizzyEggg/frontier
Clean up bss/common/ewram symbols and decompile mossdeep
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 { |