diff options
| author | TakaRikka <38417346+TakaRikka@users.noreply.github.com> | 2025-09-16 07:31:37 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-09-16 17:31:37 +0300 |
| commit | e931b1fb7967ef3419945c1d7a327c8be3879f50 (patch) | |
| tree | 1a5435bf365540747ad43718617c5537d91396bd /include/JSystem/J3DGraphAnimator | |
| parent | a8136496c7c0e35daf5e320eceb6ad745df1068a (diff) | |
swpush5 / bhashi done (#2663)
* swpush5 done
* bhashi done
* gptaru done
Diffstat (limited to 'include/JSystem/J3DGraphAnimator')
| -rw-r--r-- | include/JSystem/J3DGraphAnimator/J3DModel.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/JSystem/J3DGraphAnimator/J3DModel.h b/include/JSystem/J3DGraphAnimator/J3DModel.h index b21abd212f..fadafe7768 100644 --- a/include/JSystem/J3DGraphAnimator/J3DModel.h +++ b/include/JSystem/J3DGraphAnimator/J3DModel.h @@ -98,8 +98,8 @@ public: Mtx33* getNrmMtxPtr() { return mMtxBuffer->getNrmMtxPtr(); } Mtx* getDrawMtxPtr() { return mMtxBuffer->getDrawMtxPtr(); } void setBaseScale(const Vec& scale) { mBaseScale = scale; } - void setUserArea(u32 area) { mUserArea = area; } - u32 getUserArea() const { return mUserArea; } + void setUserArea(uintptr_t area) { mUserArea = area; } + uintptr_t getUserArea() const { return mUserArea; } Vec* getBaseScale() { return &mBaseScale; } void setAnmMtx(int jointNo, Mtx m) { mMtxBuffer->setAnmMtx(jointNo, m); } MtxP getAnmMtx(int jointNo) { return mMtxBuffer->getAnmMtx(jointNo); } @@ -110,7 +110,7 @@ public: /* 0x08 */ u32 mFlags; /* 0x0C */ u32 mDiffFlag; /* 0x10 */ J3DCalcCallBack mCalcCallBack; - /* 0x14 */ u32 mUserArea; + /* 0x14 */ uintptr_t mUserArea; /* 0x18 */ Vec mBaseScale; /* 0x24 */ Mtx mBaseTransformMtx; /* 0x54 */ Mtx mInternalView; |
