From 8ae35dc9eab11464cba0c6183d9b2896ed4ff288 Mon Sep 17 00:00:00 2001 From: SuperDude88 <82904174+SuperDude88@users.noreply.github.com> Date: Thu, 21 May 2026 00:21:34 -0400 Subject: [PATCH] Add Missing BE - Checking the values in the debugger reminded me that these need to be swapped --- .../JSystem/include/JSystem/J3DGraphBase/J3DMatBlock.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libs/JSystem/include/JSystem/J3DGraphBase/J3DMatBlock.h b/libs/JSystem/include/JSystem/J3DGraphBase/J3DMatBlock.h index e341486714..7463562c3e 100644 --- a/libs/JSystem/include/JSystem/J3DGraphBase/J3DMatBlock.h +++ b/libs/JSystem/include/JSystem/J3DGraphBase/J3DMatBlock.h @@ -1757,11 +1757,11 @@ public: #ifdef DUSK_TPHD struct PolygonOffset { - f32 mFrontOffset; - f32 mFrontScale; - f32 mBackOffset; - f32 mBackScale; - f32 mClamp; + BE(f32) mFrontOffset; + BE(f32) mFrontScale; + BE(f32) mBackOffset; + BE(f32) mBackScale; + BE(f32) mClamp; }; #endif