diff options
author | jiangzhengwenjz <jiangzhengwenjzw@qq.com> | 2019-10-12 06:52:41 +0800 |
---|---|---|
committer | jiangzhengwenjz <jiangzhengwenjzw@qq.com> | 2019-10-12 06:52:41 +0800 |
commit | b2f13ea37af3d291d198f55877df9fa3acae9e8b (patch) | |
tree | e1d41bed0c0bc28e5b95a6da23098bbcb28437dd | |
parent | 6743faa82211187514153c6754f4ae43af7daf9c (diff) |
trivial fixes
-rw-r--r-- | include/battle_anim.h | 6 | ||||
-rw-r--r-- | src/pokemon.c | 1 | ||||
-rw-r--r-- | src/rock.c | 3 |
3 files changed, 6 insertions, 4 deletions
diff --git a/include/battle_anim.h b/include/battle_anim.h index a63590dd1..05a17bbd5 100644 --- a/include/battle_anim.h +++ b/include/battle_anim.h @@ -341,6 +341,12 @@ void sub_80B8B38(u8 taskId); // flying.s void sub_80B1D3C(struct Sprite *sprite); +// water.s +extern const union AnimCmd *const gUnknown_83E5958[]; + +// fire.s +extern const union AnimCmd *const gUnknown_83E5D48[]; + // battle_anim_utility_funcs.c void sub_80BA7F8(u8 taskId); void sub_80BA83C(u8 taskId); diff --git a/src/pokemon.c b/src/pokemon.c index 4685dcbcd..1159b1861 100644 --- a/src/pokemon.c +++ b/src/pokemon.c @@ -13,7 +13,6 @@ #include "event_data.h" #include "util.h" #include "pokemon_storage_system.h" -#include "data.h" #include "battle_gfx_sfx_util.h" #include "battle_controllers.h" #include "evolution_scene.h" diff --git a/src/rock.c b/src/rock.c index cc8da4034..4db903344 100644 --- a/src/rock.c +++ b/src/rock.c @@ -8,9 +8,6 @@ #include "trig.h" #include "constants/songs.h" -extern const union AnimCmd *const gUnknown_83E5958[]; -extern const union AnimCmd *const gUnknown_83E5D48[]; - static void sub_80B4634(struct Sprite *sprite); static void sub_80B46F8(struct Sprite *sprite); static void AnimDirtParticleAcrossScreen(struct Sprite *sprite); |