diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2021-10-22 10:01:07 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-22 10:01:07 -0700 |
commit | 3e5dd1d047bada52ab0dce2fe58b04e39bcaa1cc (patch) | |
tree | 0e40067d711c783ef97667f4a8256f38ab0d4b0a /src/wonder_mail_3.c | |
parent | 3f7ee3a806d965fae70fd98f2cd1af13a2e4cf0b (diff) |
Death by 74 files (#65)
* death by 74 files
* 20% reached
* doc move stuff in pokemon
* fix undef reference
* doc more and plumb a few more constanst for num party members and num moves
* that struct is def PokemonMove.. clean up all code with it
Diffstat (limited to 'src/wonder_mail_3.c')
-rw-r--r-- | src/wonder_mail_3.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wonder_mail_3.c b/src/wonder_mail_3.c index 6cc1e96..aa87888 100644 --- a/src/wonder_mail_3.c +++ b/src/wonder_mail_3.c @@ -82,7 +82,7 @@ extern u8 sub_802DADC(void); extern u8 *sub_8096DD8(void); extern u8 sub_8096C08(u8 *); extern void sub_802C750(void); -extern s32 sub_80969AC(void); +extern s32 GetNumAcceptedJobs(void); extern void sub_802D1A0(u32); extern void sub_8012EA4(u8 *, u32); extern void* sub_8096AB4(u8); @@ -228,7 +228,7 @@ void sub_802D2A8(void) } } else { - if (sub_80969AC() >= 8) { + if (GetNumAcceptedJobs() >= 8) { if (sub_802DADC() != 0) { sub_802D1A0(10); } |