diff options
| author | SuperDude88 <82904174+SuperDude88@users.noreply.github.com> | 2026-06-19 21:27:34 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-06-19 18:27:34 -0700 |
| commit | ecafc81d53cadf3c29ac01b03170cbe9bc37c686 (patch) | |
| tree | 31c6abd4c85c1ddce38f193d8028951c23297315 /libs/JSystem/src/J3DGraphBase | |
| parent | 8d43c80c42f1a4c3835a2124ebeaf044c90e3839 (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/J3DGraphBase')
| -rw-r--r-- | libs/JSystem/src/J3DGraphBase/J3DSys.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/JSystem/src/J3DGraphBase/J3DSys.cpp b/libs/JSystem/src/J3DGraphBase/J3DSys.cpp index 88324c30b5..aad9cf2e3d 100644 --- a/libs/JSystem/src/J3DGraphBase/J3DSys.cpp +++ b/libs/JSystem/src/J3DGraphBase/J3DSys.cpp @@ -48,7 +48,7 @@ J3DSys::J3DSys() { mModel = NULL; mShape = NULL; - for (int i = 0; i < 2; i++) + for (int i = 0; i < ARRAY_SIZE(mDrawBuffer); i++) mDrawBuffer[i] = NULL; mTexture = NULL; |
