diff options
author | camthesaxman <cameronghall@cox.net> | 2017-08-24 19:13:29 -0500 |
---|---|---|
committer | camthesaxman <cameronghall@cox.net> | 2017-08-24 19:13:29 -0500 |
commit | ded9b4a8d0a59dab3882ab3fe43817bc38bca834 (patch) | |
tree | 6d1cad7ac8b3b9917f875d9b05f3192a3c571a8b /include/easy_chat.h | |
parent | 1b715eb7ba38ff408acf5e5e0a9ea88642f912bb (diff) |
more labeling
Diffstat (limited to 'include/easy_chat.h')
-rw-r--r-- | include/easy_chat.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/easy_chat.h b/include/easy_chat.h index 03e9bb737..614dce50d 100644 --- a/include/easy_chat.h +++ b/include/easy_chat.h @@ -26,6 +26,8 @@ enum { EC_GROUP_POKEMON_2, }; +#define EC_GROUP(word) ((word) >> 9) +#define EC_INDEX(word) ((word) & 0x1FF) u16 sub_80EB72C(u16 group); void sub_80EB6FC(u16 *, u16); @@ -33,7 +35,7 @@ void InitEasyChatPhrases(void); u8 sub_80EAD7C(u8 group); u16 sub_80EAE88(u8); u8 sub_80EB37C(u16); -u8* sub_80EB3FC(u8 *, u16); +u8* EasyChat_GetWordText(u8 *, u16); u8 *ConvertEasyChatWordsToString(u8 *dst, u16 *words, u16, u16); u16 sub_80EB784(u16 group); u8 sub_80EB868(u8); |