summaryrefslogtreecommitdiff
path: root/src/projectile/boneProjectile.c
diff options
context:
space:
mode:
authortheo3 <arisstephenson2@gmail.com>2021-12-25 21:28:44 -0800
committertheo3 <arisstephenson2@gmail.com>2021-12-25 21:28:44 -0800
commit079260dbd64b6d090e05b409ded30a95bf33a9e9 (patch)
tree7ac618ca2a1a59a8ce7fb042a88968f33d42daab /src/projectile/boneProjectile.c
parent11bb0e7656594d12bf16a250d43a59361e15bd9e (diff)
name asm funcs
Diffstat (limited to 'src/projectile/boneProjectile.c')
-rw-r--r--src/projectile/boneProjectile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/projectile/boneProjectile.c b/src/projectile/boneProjectile.c
index 1bececa0..d778558d 100644
--- a/src/projectile/boneProjectile.c
+++ b/src/projectile/boneProjectile.c
@@ -55,7 +55,7 @@ void BoneProjectile_Action1(Entity* this) {
void BoneProjectile_Action2(Entity* this) {
GetNextFrame(this);
sub_080AF090(this);
- if (sub_08003FC4(this, 0x1800) == 0) {
+ if (GravityUpdate(this, 0x1800) == 0) {
this->action = 3;
COLLISION_OFF(this);
this->speed = 0xe0;
@@ -75,7 +75,7 @@ void BoneProjectile_Action3(Entity* this) {
void BoneProjectile_Action4(Entity* this) {
GetNextFrame(this);
sub_0806F69C(this);
- if (sub_08003FC4(this, 0x1800) == 0) {
+ if (GravityUpdate(this, 0x1800) == 0) {
DeleteEntity(this);
}
}