summaryrefslogtreecommitdiff
path: root/src/KingSystem/Physics/System/physSystem.cpp
diff options
context:
space:
mode:
authorLéo Lam <leo@leolam.fr>2022-03-02 01:18:25 +0100
committerLéo Lam <leo@leolam.fr>2022-03-02 01:25:11 +0100
commitb2a66ca8586d435dc417d0d9aa65e6b445fe9855 (patch)
treeef64560ad069e99e7773ab905671222b3b8ea163 /src/KingSystem/Physics/System/physSystem.cpp
parent220cb534689303a2ef4df51a41b6142cfe9b7ee2 (diff)
ksys/phys: ContactPointInfoEx -> ContactLayerContactPointInfo
Turns out it's the equivalent to ContactLayerCollisionInfo.
Diffstat (limited to 'src/KingSystem/Physics/System/physSystem.cpp')
-rw-r--r--src/KingSystem/Physics/System/physSystem.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/KingSystem/Physics/System/physSystem.cpp b/src/KingSystem/Physics/System/physSystem.cpp
index 0ef11465..2efa20ae 100644
--- a/src/KingSystem/Physics/System/physSystem.cpp
+++ b/src/KingSystem/Physics/System/physSystem.cpp
@@ -57,9 +57,9 @@ void System::freeContactPointInfo(ContactPointInfo* info) const {
mContactMgr->freeContactPointInfo(info);
}
-ContactPointInfoEx* System::allocContactPointsEx(sead::Heap* heap, int num, int num2,
- const sead::SafeString& name, int a, int b,
- int c) const {
+LayerContactPointInfo* System::allocLayerContactPointInfo(sead::Heap* heap, int num, int num2,
+ const sead::SafeString& name, int a, int b,
+ int c) const {
return mContactMgr->allocContactPointsEx(heap, num, num2, name, a, b, c);
}