diff options
author | Marijn van der Werf <marijn.vanderwerf@gmail.com> | 2017-05-08 22:37:45 +0200 |
---|---|---|
committer | YamaArashi <YamaArashi@users.noreply.github.com> | 2017-05-08 14:19:49 -0700 |
commit | f6e3598f5efbda472c6605c94b5597d1196ea619 (patch) | |
tree | f1d812acfac3534c42685d88016d5f3eb6e5d85a /include | |
parent | 64412ee4c45a53712dd94410966ec68771b83fdd (diff) |
Decompile ShowPokedexCryScreen
Diffstat (limited to 'include')
-rw-r--r-- | include/asm.h | 9 | ||||
-rw-r--r-- | include/asm.inc.h | 7 |
2 files changed, 16 insertions, 0 deletions
diff --git a/include/asm.h b/include/asm.h index fe1b3139f..e72683e45 100644 --- a/include/asm.h +++ b/include/asm.h @@ -45,6 +45,15 @@ struct UnknownStruct_FPA u16 unk14; }; +struct CryRelatedStruct +{ + u16 unk0; + u8 unk2; + u8 paletteNo; + u8 xPos; + u8 yPos; +}; + #include "asm.inc.h" #endif //PROJECT_ASM_H diff --git a/include/asm.inc.h b/include/asm.inc.h index 582c3ebb7..23156e756 100644 --- a/include/asm.inc.h +++ b/include/asm.inc.h @@ -375,6 +375,13 @@ void sub_810FA54(void); // asm/battle_records.o void InitLinkBattleRecords(void); +// asm/pokedex_cry_screen.o +u8 sub_8119E3C(struct CryRelatedStruct *, u8); +void sub_8119F88(u8 a); +void sub_811A050(u16 species); +u8 ShowPokedexCryScreen(struct CryRelatedStruct *, u8); +void DestroyCryMeterNeedleSprite(); + // asm/battle_transition.o void sub_811AABC(u8); void sub_811AAD8(u8); |