diff options
| author | Max Roncace <me@caseif.net> | 2025-09-15 05:53:53 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-09-15 02:53:53 -0700 |
| commit | a8136496c7c0e35daf5e320eceb6ad745df1068a (patch) | |
| tree | 598090fdb1b382f5383ec93647d36a9a430bfcd1 /include/JSystem/J3DGraphAnimator | |
| parent | 9fd28c507f4a63bf58d0cec918dee17cc8f24391 (diff) | |
Miscellaneous TU fixes (#2662)
Diffstat (limited to 'include/JSystem/J3DGraphAnimator')
| -rw-r--r-- | include/JSystem/J3DGraphAnimator/J3DJoint.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/JSystem/J3DGraphAnimator/J3DJoint.h b/include/JSystem/J3DGraphAnimator/J3DJoint.h index b20b48d792..beb4004dcf 100644 --- a/include/JSystem/J3DGraphAnimator/J3DJoint.h +++ b/include/JSystem/J3DGraphAnimator/J3DJoint.h @@ -69,7 +69,7 @@ public: void setYounger(J3DJoint* pYounger) { mYounger = pYounger; } void setCurrentMtxCalc(J3DMtxCalc* pMtxCalc) { mCurrentMtxCalc = pMtxCalc; } J3DTransformInfo& getTransformInfo() { return mTransformInfo; } - void setTransformInfo(J3DTransformInfo& i_info) { mTransformInfo = i_info; } + void setTransformInfo(const J3DTransformInfo& i_info) { mTransformInfo = i_info; } Vec* getMax() { return &mMax; } Vec* getMin() { return &mMin; } void setCallBack(J3DJointCallBack callback) { mCallBack = callback; } |
