diff options
author | yenatch <yenatch@gmail.com> | 2017-05-21 00:54:20 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-21 00:54:20 -0400 |
commit | 1c49064780f87a874c8f516ef20be61b17bafef0 (patch) | |
tree | 39d88024b6c278f8c4182ee869db6316c71bd8bd /src/easy_chat.c | |
parent | 9281b378095596896fce5be481fb40966226d955 (diff) | |
parent | ea181bea7652e6ea28705302ce7e85998e248986 (diff) |
Merge pull request #299 from PikalaxALT/master
Secret base and TV decompilation
Diffstat (limited to 'src/easy_chat.c')
-rw-r--r-- | src/easy_chat.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/easy_chat.c b/src/easy_chat.c index 380fe6e4d..ee1e37b9b 100644 --- a/src/easy_chat.c +++ b/src/easy_chat.c @@ -23,6 +23,11 @@ extern const u8 gEasyChatGroupSizes[]; extern u16 gSpecialVar_0x8004; +void sub_80EB6FC(u16 *arg0, u16 arg1) { + for (arg1--; arg1!=0xffff; arg1--) + *(arg0++) = 0xffff; +} + u16 sub_80EB72C(u16 group) { u16 local1; @@ -260,3 +265,4 @@ static u16 sub_80EB9D8(void) { return -1; } + |