diff options
| author | theo3 <arisstephenson2@gmail.com> | 2021-02-26 14:48:30 -0800 |
|---|---|---|
| committer | theo3 <arisstephenson2@gmail.com> | 2021-02-26 14:48:30 -0800 |
| commit | cca3f69d182042ec46188d87087f87e3fe754cf8 (patch) | |
| tree | ac238b0001ee9d6476527e6a14f51afe86d4ddd6 /src/enemy | |
| parent | 112e97abc83be6d250aff60cbfda8d83c4a44846 (diff) | |
tmp
Diffstat (limited to 'src/enemy')
| -rw-r--r-- | src/enemy/gyorgMale.c | 8 | ||||
| -rw-r--r-- | src/enemy/spinyChuchu.c | 2 | ||||
| -rw-r--r-- | src/enemy/vaatiBall.c | 4 |
3 files changed, 7 insertions, 7 deletions
diff --git a/src/enemy/gyorgMale.c b/src/enemy/gyorgMale.c index 5301647f..0c354ab7 100644 --- a/src/enemy/gyorgMale.c +++ b/src/enemy/gyorgMale.c @@ -177,12 +177,12 @@ void sub_0804696C(Entity* this) { this->nonPlanarMovement = 0x100; this->spriteOrientation.flipY = 3; this->spriteRendering.b3 = 3; - PlaySFX(0x2e); + SoundReq(0x2e); } if (this->actionDelay) { if (gRoomControls.roomOriginY + 0x258 > this->y.HALF.HI) { this->actionDelay = 0; - PlaySFX(0xf7); + SoundReq(0xf7); } } } @@ -987,7 +987,7 @@ void sub_08047BA4(Entity* this) { } else { this->field_0x76.HWORD = 0x88; } - PlaySFX(0x1B5); + SoundReq(0x1B5); sub_08047BF0(this); } @@ -1022,7 +1022,7 @@ void sub_08047BF0(Entity* this) { if (this->y.HALF.HI > gRoomControls.roomOriginY + 0x270) { this->previousActionFlag = 2; this->field_0x7c.HALF.HI = 0xAA; - PlaySFX(0x12D); + SoundReq(0x12D); InitAnimationForceUpdate(this, 1); } } else { diff --git a/src/enemy/spinyChuchu.c b/src/enemy/spinyChuchu.c index 273ed695..eeb69b8e 100644 --- a/src/enemy/spinyChuchu.c +++ b/src/enemy/spinyChuchu.c @@ -122,7 +122,7 @@ void sub_08022654(Entity* this) { if (--this->field_0xf) return; this->previousActionFlag = 1; - PlaySFX(0x12d); + SoundReq(0x12d); InitializeAnimation(this, 0); /* fallthrough */ case 1: diff --git a/src/enemy/vaatiBall.c b/src/enemy/vaatiBall.c index fcbc04f3..0b339c71 100644 --- a/src/enemy/vaatiBall.c +++ b/src/enemy/vaatiBall.c @@ -38,7 +38,7 @@ void VaatiBall(Entity* this) { this->currentHealth = -1; parent->field_0x80.HALF.LO--; CreateDust(this); - PlaySFX(0x1c3); + SoundReq(0x1c3); } } } @@ -369,7 +369,7 @@ void sub_08044B04(Entity* this) { if (this->actionDelay) { if (--this->actionDelay == 0) { this->nonPlanarMovement = 1280; - PlaySFX(0x14f); + SoundReq(0x14f); } } if (this->field_0x78.HALF.HI == 3) |
