J3DMatBlock OK

This commit is contained in:
LagoLunatic
2026-08-28 12:57:22 -04:00
parent d27955c04d
commit 77f9369fd6
3 changed files with 3 additions and 5 deletions
+2 -2
View File
@@ -882,8 +882,8 @@ struct J3DIndTexOrder : public J3DIndTexOrderInfo {
J3DIndTexOrder() { *(J3DIndTexOrderInfo*)this = j3dDefaultIndTexOrderNull; }
explicit J3DIndTexOrder(const J3DIndTexOrderInfo& info) { *(J3DIndTexOrderInfo*)this = info; }
u8 getCoord() const { return mCoord; }
u8 getMap() const { return mMap; }
u8 getCoord() { return mCoord; }
u8 getMap() { return mMap; }
void setCoord(u8 coord) { mCoord = coord; }
void setMap(u8 map) { mMap = map; }
};