diff options
| author | Jcw87 <Jcw87@users.noreply.github.com> | 2026-08-28 11:07:33 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-08-28 14:07:33 -0400 |
| commit | 9234aa8286bcbcb9f69de7adb3125aff25076278 (patch) | |
| tree | f6b01fc9914c830178a267243ef8801a7a6d51bf /include/JSystem/J3DGraphLoader | |
| parent | 77f9369fd68f4dfff44a90520062a821b38f5cb1 (diff) | |
Compiler compatibility, other fixes (#1188)
* add missing data
* fix return value
* d_camera fix
* missing GXEnd
* struct fixes
* fix include
Diffstat (limited to 'include/JSystem/J3DGraphLoader')
| -rw-r--r-- | include/JSystem/J3DGraphLoader/J3DJointFactory.h | 2 | ||||
| -rw-r--r-- | include/JSystem/J3DGraphLoader/J3DShapeFactory.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/JSystem/J3DGraphLoader/J3DJointFactory.h b/include/JSystem/J3DGraphLoader/J3DJointFactory.h index ca203805..53f23729 100644 --- a/include/JSystem/J3DGraphLoader/J3DJointFactory.h +++ b/include/JSystem/J3DGraphLoader/J3DJointFactory.h @@ -17,7 +17,7 @@ struct J3DJointInitData { }; // Size: 0x30 struct J3DJointBlock { - /* 0x00 */ u8 mMagic[4]; + /* 0x00 */ u32 mMagic; /* 0x04 */ u32 mSize; /* 0x08 */ u16 mJointNum; diff --git a/include/JSystem/J3DGraphLoader/J3DShapeFactory.h b/include/JSystem/J3DGraphLoader/J3DShapeFactory.h index 5407ae26..65e46228 100644 --- a/include/JSystem/J3DGraphLoader/J3DShapeFactory.h +++ b/include/JSystem/J3DGraphLoader/J3DShapeFactory.h @@ -32,7 +32,7 @@ struct J3DShapeDrawInitData { }; struct J3DShapeBlock { - /* 0x00 */ u8 mMagic[4]; + /* 0x00 */ u32 mMagic; /* 0x04 */ u32 mSize; /* 0x08 */ u16 mShapeNum; |
