summaryrefslogtreecommitdiff
path: root/include/JSystem/J3DGraphBase
diff options
context:
space:
mode:
authorTakaRikka <38417346+TakaRikka@users.noreply.github.com>2021-11-10 10:56:51 -0800
committerGitHub <noreply@github.com>2021-11-10 19:56:51 +0100
commit74ed2da8bc93804373cddf64c0c878603150b699 (patch)
tree1acc85f32337fcf70cc4ffa6091824d362b7f8ff /include/JSystem/J3DGraphBase
parent901b222eb877be81bb9043d65b6616bd21152a12 (diff)
d_bg_s (#159)
* wip * d_bg_s * most of d_bg_s * small cleanup * clang * fixes
Diffstat (limited to 'include/JSystem/J3DGraphBase')
-rw-r--r--include/JSystem/J3DGraphBase/J3DVertex.h5
1 files changed, 3 insertions, 2 deletions
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 */