diff options
author | PikalaxALT <PikalaxALT@users.noreply.github.com> | 2017-05-22 20:05:20 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-22 20:05:20 -0400 |
commit | de9f64061f83aab80e62b0fa69f9ed182704dfc9 (patch) | |
tree | 6c8548fce969b5bd9d457c5a0301d3ba886bac22 /include/asm.inc.h | |
parent | cb975fbf00519c90c05c0dfaaf3f7a22ad8449ab (diff) | |
parent | 70b04997a09a45552a257623867acc1a8be6141e (diff) |
Merge pull request #5 from PikalaxALT/pikalaxalt/field_map_obj
Pikalaxalt/field map obj
Diffstat (limited to 'include/asm.inc.h')
-rw-r--r-- | include/asm.inc.h | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/include/asm.inc.h b/include/asm.inc.h index c28050929..8921d14cd 100644 --- a/include/asm.inc.h +++ b/include/asm.inc.h @@ -1,6 +1,14 @@ // src/rom3.o void sub_800C35C(void); +struct UnkStruct8060024 { + u8 outsideMovementRect:1; + u8 tileIsImpassable:1; + u8 elevationMismatch:1; + u8 pathBlockedByObject:1; + u8 pad_04:4; +}; + // asm/battle_2.o void sub_800E7C4(void); u8 b_first_side(u8, u8, u8); @@ -31,7 +39,7 @@ void StoreWordInTwoHalfwords(u16 *, u32); void LoadWordFromTwoHalfwords(u16 *, u32 *); // src/daycare.o -u8 daycare_count_pokemon(u8 *); +u8 Daycare_CountPokemon(struct BoxPokemon *); // asm/daycare.o void sub_8041324(struct BoxPokemon *, void *); @@ -158,7 +166,7 @@ bool8 pokemon_has_move(struct Pokemon *, u16); void sub_806FA18(u8 taskId); // src/party_menu.o -void sub_806E834(); +u8 sub_806E834(const u8 *message, u8 arg1); // src/rom_8077ABC.o u8 battle_side_get_owner(u8); @@ -328,7 +336,7 @@ void sub_80C8F34(u8); // asm/easy_chat.o void InitEasyChatPhrases(void); u8* sub_80EB3FC(u8 *, u16); -u8 ConvertEasyChatWordsToString(u8 *dst, u16 *words, u16, u16); +u8 *ConvertEasyChatWordsToString(u8 *dst, u16 *words, u16, u16); // asm/pokenav.o void sub_80EBA5C(void); @@ -422,6 +430,9 @@ void sub_8134AC0(void *); // src/player_pc.o void NewGameInitPCItems(void); +// asm/hall_of_fame.o +void sub_8143648(u16 paletteTag, u8 arg1); + // src/diploma.o void sub_8145D88(void); |