From 74ed2da8bc93804373cddf64c0c878603150b699 Mon Sep 17 00:00:00 2001 From: TakaRikka <38417346+TakaRikka@users.noreply.github.com> Date: Wed, 10 Nov 2021 10:56:51 -0800 Subject: d_bg_s (#159) * wip * d_bg_s * most of d_bg_s * small cleanup * clang * fixes --- include/JSystem/J3DGraphBase/J3DVertex.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'include/JSystem/J3DGraphBase') diff --git a/include/JSystem/J3DGraphBase/J3DVertex.h b/include/JSystem/J3DGraphBase/J3DVertex.h index 9543468037..87e50c9276 100644 --- a/include/JSystem/J3DGraphBase/J3DVertex.h +++ b/include/JSystem/J3DGraphBase/J3DVertex.h @@ -2,6 +2,7 @@ #define J3DVERTEX_H #include "dolphin/gx/GX.h" +#include "dolphin/mtx/vec.h" #include "dolphin/types.h" class J3DModel; @@ -84,11 +85,11 @@ private: }; // Size: 0x38 struct VertexNormal { - u8 data[0xC]; + Vec data; }; struct VertexPosition { - u8 data[0xC]; + Vec data; }; #endif /* J3DVERTEX_H */ -- cgit v1.2.3