diff options
| author | Aetias <144526980+AetiasHax@users.noreply.github.com> | 2025-07-01 00:37:52 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-01 00:37:52 +0200 |
| commit | cfb0123c4a582a7cd28e1a49e7642cba0260cc6f (patch) | |
| tree | f5e88a237371e2f30a7694df7fdb13d8ba14814c /src/00_Core/Actor | |
| parent | 3fe49695b4936ea29526eb8b7d07250a69a06c38 (diff) | |
| parent | d5ee59ebf71787a0c6a8ac9c5f5890e79407c60d (diff) | |
Merge pull request #60 from Yanis002/bmg
Decomp functions related to BMG files
Diffstat (limited to 'src/00_Core/Actor')
| -rw-r--r-- | src/00_Core/Actor/ActorManager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/00_Core/Actor/ActorManager.cpp b/src/00_Core/Actor/ActorManager.cpp index 955c447d..d9dbe8b1 100644 --- a/src/00_Core/Actor/ActorManager.cpp +++ b/src/00_Core/Actor/ActorManager.cpp @@ -312,7 +312,7 @@ ARM s32 ActorManager::func_ov00_020c3bb0(unk32 param1, s32 *param2) { if (param2 != NULL) *param2 = 0; AABB boxes[8]; - s32 numBoxes = gMapManager->GetTriggerBoundingBoxes(param1, boxes, ARRAY_LEN(boxes)); + s32 numBoxes = gMapManager->GetTriggerBoundingBoxes(param1, boxes, ARRAY_LEN_U(boxes)); if (numBoxes <= 0) return 0; s32 i; @@ -349,7 +349,7 @@ ARM s32 ActorManager::func_ov00_020c3bb0(unk32 param1, s32 *param2) { ARM void ActorManager::func_ov00_020c3ce8(unk32 param1, bool param2) { AABB boxes[8]; - s32 numBoxes = gMapManager->GetTriggerBoundingBoxes(param1, boxes, ARRAY_LEN(boxes)); + s32 numBoxes = gMapManager->GetTriggerBoundingBoxes(param1, boxes, ARRAY_LEN_U(boxes)); if (numBoxes <= 0) return; s32 i; |
