diff options
author | Marcus Huderle <huderlem@gmail.com> | 2019-02-06 13:17:09 -0600 |
---|---|---|
committer | huderlem <huderlem@gmail.com> | 2019-02-06 21:14:28 -0600 |
commit | 1253cbf5f6780386acda0cfab8f201bf5a70570e (patch) | |
tree | 8f46616dc2b0b838785503a6e247ebc8e31f6961 /src/pokeball.c | |
parent | e9149b86086c1f61309f788a22874ac5b0492e15 (diff) |
Document some battle anim things
Diffstat (limited to 'src/pokeball.c')
-rw-r--r-- | src/pokeball.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pokeball.c b/src/pokeball.c index 1938d888d..d4605ccd8 100644 --- a/src/pokeball.c +++ b/src/pokeball.c @@ -411,7 +411,7 @@ static void Task_DoPokeballSendOutAnim(u8 taskId) static void SpriteCB_TestBallThrow(struct Sprite *sprite) { - if (TranslateAnimArc(sprite)) + if (TranslateAnimHorizontalArc(sprite)) { u16 ballId; u8 taskId = sprite->oam.affineParam; @@ -940,7 +940,7 @@ static void SpriteCB_PlayerMonSendOut_2(struct Sprite *sprite) } else { - if (TranslateAnimArc(sprite)) + if (TranslateAnimHorizontalArc(sprite)) { sprite->pos1.x += sprite->pos2.x; sprite->pos1.y += sprite->pos2.y; |