diff options
| author | theo3 <arisstephenson2@gmail.com> | 2023-12-30 17:13:42 -0800 |
|---|---|---|
| committer | theo3 <arisstephenson2@gmail.com> | 2023-12-30 17:13:42 -0800 |
| commit | fb9f59fbbbd1ec2db3a3e757a3dab9a0e563520c (patch) | |
| tree | 0c091f4a07d0e8b188db3336eb84ac25064f2618 /src/manager | |
| parent | 37723f560798698a2a17d0b29ee7baca1a8cb1c7 (diff) | |
label BounceUpdate asm
Diffstat (limited to 'src/manager')
| -rw-r--r-- | src/manager/enemyInteractionManager.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/manager/enemyInteractionManager.c b/src/manager/enemyInteractionManager.c index 0c8428d7..cd393b31 100644 --- a/src/manager/enemyInteractionManager.c +++ b/src/manager/enemyInteractionManager.c @@ -66,14 +66,14 @@ void EnemyInteractionManager_Action1(EnemyInteractionManager* this) { for (i = 0; i < n; i++) { tmp = this->d.enemies[i]; for (j = i + 1; j < super->timer; j++) { - sub_08004484(tmp, this->d.enemies[j]); + CalcCollisionStaticEntity(tmp, this->d.enemies[j]); } } } else { for (i = 0; i < n; i++) { tmp = this->d.enemies[i]; for (j = i + 1; j < super->timer; j++) { - sub_08004484(this->d.enemies[j], tmp); + CalcCollisionStaticEntity(this->d.enemies[j], tmp); } } } |
