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
This commit is contained in:
SuperDude88
2026-06-19 21:27:34 -04:00
committed by GitHub
parent 8d43c80c42
commit ecafc81d53
9 changed files with 37 additions and 37 deletions
+2 -2
View File
@@ -12,7 +12,7 @@ public:
~dScissorBegin_packet_c() {}
cXyz* getQuad() { return mQuad; }
void entryPacket() { j3dSys.getDrawBuffer(1)->entryImm(this, 0); }
void entryPacket() { j3dSys.getDrawBuffer(J3DSysDrawBuf_Xlu)->entryImm(this, 0); }
/* 0x10 */ cXyz mQuad[4];
};
@@ -22,7 +22,7 @@ public:
void draw();
~dScissorEnd_packet_c() {}
void entryPacket() { j3dSys.getDrawBuffer(1)->entryImm(this, 0); }
void entryPacket() { j3dSys.getDrawBuffer(J3DSysDrawBuf_Xlu)->entryImm(this, 0); }
};
/**