summaryrefslogtreecommitdiff
path: root/libs/JSystem/src/J3DGraphAnimator
diff options
context:
space:
mode:
authorSuperDude88 <82904174+SuperDude88@users.noreply.github.com>2026-06-19 21:27:34 -0400
committerGitHub <noreply@github.com>2026-06-19 18:27:34 -0700
commitecafc81d53cadf3c29ac01b03170cbe9bc37c686 (patch)
tree31c6abd4c85c1ddce38f193d8028951c23297315 /libs/JSystem/src/J3DGraphAnimator
parent8d43c80c42f1a4c3835a2124ebeaf044c90e3839 (diff)
Use J3DSysDrawBuf Enum (#3166)
- Update all the 0/1 values to use the enum Hopefully this builds properly I didn't set up everything locally
Diffstat (limited to 'libs/JSystem/src/J3DGraphAnimator')
-rw-r--r--libs/JSystem/src/J3DGraphAnimator/J3DJoint.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/JSystem/src/J3DGraphAnimator/J3DJoint.cpp b/libs/JSystem/src/J3DGraphAnimator/J3DJoint.cpp
index 4091a3b7a1..943848cc30 100644
--- a/libs/JSystem/src/J3DGraphAnimator/J3DJoint.cpp
+++ b/libs/JSystem/src/J3DGraphAnimator/J3DJoint.cpp
@@ -159,8 +159,8 @@ J3DJoint::J3DJoint() {
void J3DJoint::entryIn() {
MtxP anmMtx = j3dSys.getModel()->getAnmMtx(mJntNo);
- j3dSys.getDrawBuffer(0)->setZMtx(anmMtx);
- j3dSys.getDrawBuffer(1)->setZMtx(anmMtx);
+ j3dSys.getDrawBuffer(J3DSysDrawBuf_Opa)->setZMtx(anmMtx);
+ j3dSys.getDrawBuffer(J3DSysDrawBuf_Xlu)->setZMtx(anmMtx);
for (J3DMaterial* mesh = mMesh; mesh != NULL;) {
if (mesh->getShape()->checkFlag(J3DShpFlag_Visible)) {
mesh = mesh->getNext();