diff options
author | huderlem <huderlem@gmail.com> | 2019-03-08 13:28:49 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-08 13:28:49 -0600 |
commit | d637317e324a9055ae42286046dd4b081f39d51a (patch) | |
tree | 99c243e92cae64a2b60b5c4b86e161db9072a7b0 /src/battle_script_commands.c | |
parent | bd157b301dea3526a4c373737dc8167d9a02b168 (diff) | |
parent | 5886f82ef5593fda68687c2e44b2feef76028ce3 (diff) |
Merge pull request #592 from Phlosioneer/extern-cleanup
Extern cleanup
Diffstat (limited to 'src/battle_script_commands.c')
-rw-r--r-- | src/battle_script_commands.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/battle_script_commands.c b/src/battle_script_commands.c index 620366b52..ac9fb3073 100644 --- a/src/battle_script_commands.c +++ b/src/battle_script_commands.c @@ -48,6 +48,7 @@ #include "battle_pyramid.h" #include "field_specials.h" #include "pokemon_summary_screen.h" +#include "pokenav.h" extern struct MusicPlayerInfo gMPlayInfo_BGM; @@ -55,9 +56,6 @@ extern const u8* const gBattleScriptsForMoveEffects[]; // functions extern void sub_81D388C(struct Pokemon* mon, void* statStoreLocation); // pokenav.s -extern void sub_81D3640(u16 arg0, void* statStoreLocation1, void* statStoreLocation2, u8 arg3, u8 arg4, u8 arg5); // pokenav.s -extern void sub_81D3784(u16 arg0, void* statStoreLocation1, u8 arg2, u8 arg3, u8 arg4); // pokenav.s -extern u8 sub_813B21C(void); #define DEFENDER_IS_PROTECTED ((gProtectStructs[gBattlerTarget].protected) && (gBattleMoves[gCurrentMove].flags & FLAG_PROTECT_AFFECTED)) |