d_a_demo00 OK (#2817)

* Misc small matches

* Add J3DFrameCtrl::EMode_NULL enum

* Improve weak bss fakematch and remove a functionvalue fakematch

* demo00 OK
This commit is contained in:
LagoLunatic
2025-11-17 18:38:04 -05:00
committed by GitHub
parent 4ab97e8f26
commit bd2def28db
25 changed files with 1194 additions and 1113 deletions
@@ -919,11 +919,12 @@ public:
class J3DFrameCtrl {
public:
enum Attribute_e {
EMode_NONE,
EMode_RESET,
EMode_LOOP,
EMode_REVERSE,
EMode_LOOP_REVERSE,
/* -1 */ EMode_NULL = -1,
/* 0x0 */ EMode_NONE,
/* 0x1 */ EMode_RESET,
/* 0x2 */ EMode_LOOP,
/* 0x3 */ EMode_REVERSE,
/* 0x4 */ EMode_LOOP_REVERSE,
};
J3DFrameCtrl() { this->init(0); }
+1 -1
View File
@@ -84,7 +84,7 @@ public:
static J3DMtxCalc* mCurrentMtxCalc;
u8 getKind() { return mKind & 15; }
u8 getKind() const { return mKind & 15; }
private:
friend struct J3DJointFactory;