diff options
| author | theo3 <arisstephenson2@gmail.com> | 2021-12-25 21:28:44 -0800 |
|---|---|---|
| committer | theo3 <arisstephenson2@gmail.com> | 2021-12-25 21:28:44 -0800 |
| commit | 079260dbd64b6d090e05b409ded30a95bf33a9e9 (patch) | |
| tree | 7ac618ca2a1a59a8ce7fb042a88968f33d42daab /src/enemy/spinyChuchu.c | |
| parent | 11bb0e7656594d12bf16a250d43a59361e15bd9e (diff) | |
name asm funcs
Diffstat (limited to 'src/enemy/spinyChuchu.c')
| -rw-r--r-- | src/enemy/spinyChuchu.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/enemy/spinyChuchu.c b/src/enemy/spinyChuchu.c index 69664d39..7d5ea60b 100644 --- a/src/enemy/spinyChuchu.c +++ b/src/enemy/spinyChuchu.c @@ -86,7 +86,7 @@ void sub_080225A0(Entity* this) { } void sub_080225BC(Entity* this) { - sub_08003FC4(this, 0x1800); + GravityUpdate(this, 0x1800); if (this->frame & 1) { sub_0804A7D4(this); } else { @@ -125,7 +125,7 @@ void sub_08022654(Entity* this) { InitializeAnimation(this, 0); /* fallthrough */ case 1: - if (sub_08003FC4(this, 0x1800)) + if (GravityUpdate(this, 0x1800)) return; this->subAction = 2; @@ -204,7 +204,7 @@ void sub_080227AC(Entity* this) { } void sub_0802281C(Entity* this) { - sub_08003FC4(this, 0x1800); + GravityUpdate(this, 0x1800); GetNextFrame(this); if (this->frame & 0x80) { this->action = 2; @@ -218,7 +218,7 @@ void sub_08022854(Entity* this) { GetNextFrame(this); if (this->frame & 1) { sub_080AEFE0(this); - if (sub_08003FC4(this, 0x1800) == 0) { + if (GravityUpdate(this, 0x1800) == 0) { this->action = 7; this->hitType = 0x5c; InitializeAnimation(this, 5); |
