summaryrefslogtreecommitdiff
path: root/src/enemy
diff options
context:
space:
mode:
authorBehemoth <Luisscheurenbrand@gmail.com>2020-08-26 02:21:46 +0200
committerBehemoth <Luisscheurenbrand@gmail.com>2020-08-26 02:21:46 +0200
commitb174637d188288ac7f454efeb4c97afd26c0d872 (patch)
treeeadb70dfc81c94cac6a3fd4cba0e174b5a6c8988 /src/enemy
parent24351758680258426dadf3cf2c6c14ddac7bc713 (diff)
- label effect functions
- combine object creation function
Diffstat (limited to 'src/enemy')
-rw-r--r--src/enemy/rupeeLike.c2
-rw-r--r--src/enemy/vaatiBall.c2
-rw-r--r--src/enemy/wisp.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/enemy/rupeeLike.c b/src/enemy/rupeeLike.c
index 7a021657..8a011dad 100644
--- a/src/enemy/rupeeLike.c
+++ b/src/enemy/rupeeLike.c
@@ -262,7 +262,7 @@ void sub_08029770(Entity* this) {
InitializeAnimation(this, 2);
this->attachedEntity->spriteSettings.b.draw = TRUE;
InitializeAnimation(this->attachedEntity, 6);
- sub_080A29BC(this);
+ CreateDust(this);
}
}
diff --git a/src/enemy/vaatiBall.c b/src/enemy/vaatiBall.c
index ba12afd7..fcbc04f3 100644
--- a/src/enemy/vaatiBall.c
+++ b/src/enemy/vaatiBall.c
@@ -37,7 +37,7 @@ void VaatiBall(Entity* this) {
this->flags &= 0x7f;
this->currentHealth = -1;
parent->field_0x80.HALF.LO--;
- sub_080A29BC(this);
+ CreateDust(this);
PlaySFX(0x1c3);
}
}
diff --git a/src/enemy/wisp.c b/src/enemy/wisp.c
index b56ff33a..2c7431d6 100644
--- a/src/enemy/wisp.c
+++ b/src/enemy/wisp.c
@@ -109,7 +109,7 @@ void sub_080336DC(Entity* this) {
this->y.HALF.HI = this->field_0x82.HWORD;
break;
case 0x18:
- sub_080A29BC(this);
+ CreateDust(this);
break;
case 0xc:
this->spriteSettings.b.draw = TRUE;