diff options
author | scnorton <scnorton@biociphers.org> | 2017-06-28 12:33:11 -0400 |
---|---|---|
committer | scnorton <scnorton@biociphers.org> | 2017-06-28 12:33:11 -0400 |
commit | 180a1aba1687423fadca8f7d19567f95b47ecb73 (patch) | |
tree | 4086c8afe6ab42d87e482d0148ea467ce17425fd /include | |
parent | 0197921d32ac4af5a4290fa3bdcb65a275e8067c (diff) |
Finish decompilation of pokeblock.s
Diffstat (limited to 'include')
-rwxr-xr-x | include/pokeblock.h | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/include/pokeblock.h b/include/pokeblock.h index 008734a69..fdaaf5fc2 100755 --- a/include/pokeblock.h +++ b/include/pokeblock.h @@ -6,6 +6,15 @@ struct YesNoCBTable { void (*noFunc)(void); }; +enum { + PBLOCK_CLR_BLACK, + PBLOCK_CLR_RED, + PBLOCK_CLR_BLUE, + PBLOCK_CLR_PINK, + PBLOCK_CLR_GREEN, + PBLOCK_CLR_YELLOW +}; + extern u8 ewram[]; extern u8 gUnknown_02039244; extern u8 gUnknown_02039248[4]; @@ -15,7 +24,7 @@ extern const u8 *gUnknown_03000758; void sub_810B96C(void); void sub_810BA7C(u8); void ClearPokeblocks(void); -void sub_810CA6C(u8); -s16 sub_810CAE4(u8, struct Pokeblock *); +bool8 sub_810CA6C(u8); +s16 sub_810CAE4(u8, const struct Pokeblock *); #endif // GUARD_POKEBLOCK_H |