summaryrefslogtreecommitdiff
path: root/src/JSystem
diff options
context:
space:
mode:
authorLagoLunatic <LagoLunatic@users.noreply.github.com>2025-08-26 17:43:02 -0400
committerLagoLunatic <LagoLunatic@users.noreply.github.com>2025-08-26 17:43:02 -0400
commitd9c2ffe6190d6342bf00328b30bdaa67c30ffee3 (patch)
tree1801f38fac2efeda20e5a35f13dff965ff4daf77 /src/JSystem
parent993431d0f8a6249dbd1d9d0a49f45e50c996976a (diff)
J3DModel inlines
Diffstat (limited to 'src/JSystem')
-rw-r--r--src/JSystem/J3DGraphAnimator/J3DModel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/JSystem/J3DGraphAnimator/J3DModel.cpp b/src/JSystem/J3DGraphAnimator/J3DModel.cpp
index 278835d5..7e845994 100644
--- a/src/JSystem/J3DGraphAnimator/J3DModel.cpp
+++ b/src/JSystem/J3DGraphAnimator/J3DModel.cpp
@@ -484,14 +484,14 @@ s32 J3DModel::setSkinDeform(J3DSkinDeform* pSkinDeform, u32 flags) {
/* 802EE5D8-802EE67C .text calcAnmMtx__8J3DModelFv */
void J3DModel::calcAnmMtx() {
j3dSys.setModel(this);
- j3dSys.setCurrentMtxCalc(getModelData()->getJointTree().getBasicMtxCalc());
+ j3dSys.setCurrentMtxCalc(getModelData()->getBasicMtxCalc());
if (checkFlag(J3DMdlFlag_Unk00002))
j3dSys.getCurrentMtxCalc()->init(j3dDefaultScale, j3dDefaultMtx);
else
j3dSys.getCurrentMtxCalc()->init(mBaseScale, mBaseTransformMtx);
- getModelData()->getJointTree().getBasicMtxCalc()->recursiveCalc(getModelData()->getJointTree().getRootNode());
+ getModelData()->getBasicMtxCalc()->recursiveCalc(getModelData()->getRootNode());
}
/* 802EE67C-802EE874 .text calcWeightEnvelopeMtx__8J3DModelFv */