diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-09-27 18:35:11 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-09-27 15:35:11 -0700 |
| commit | 5dc86158bc15a2f7d7d499d38d388be1d997e750 (patch) | |
| tree | 9390d282191ac89c7925b4c7277d3c2aa70c834c /include/JSystem/J2DGraph | |
| parent | 54d8839d916beef73c29165932fb33f9b24f2394 (diff) | |
Fix most vtable issues (#2706)
Diffstat (limited to 'include/JSystem/J2DGraph')
| -rw-r--r-- | include/JSystem/J2DGraph/J2DAnimation.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/include/JSystem/J2DGraph/J2DAnimation.h b/include/JSystem/J2DGraph/J2DAnimation.h index 8820f36b05..e29ddd0e17 100644 --- a/include/JSystem/J2DGraph/J2DAnimation.h +++ b/include/JSystem/J2DGraph/J2DAnimation.h @@ -31,9 +31,7 @@ public: mFrameMax = 0; } /* 80053C94 */ virtual ~J2DAnmBase() {} - // this is supposed to be inline, but doing so causes problems - // with where the vtable is placed in the final framework.dol - /* 800569B0 */ virtual void searchUpdateMaterialID(J2DScreen*); + /* 800569B0 */ virtual void searchUpdateMaterialID(J2DScreen*) {} s16 getFrameMax() const { return mFrameMax; } void setFrame(f32 frame) { mFrame = frame; } @@ -158,7 +156,7 @@ public: mKind = KIND_TRANSFORM; } /* 80184370 */ virtual ~J2DAnmTransform() {} - /* 80191130 */ virtual void getTransform(u16, J3DTransformInfo*) const; // {} (should be inline) + /* 80191130 */ virtual void getTransform(u16, J3DTransformInfo*) const {} /* 0x10 */ f32* mScaleValues; /* 0x14 */ s16* mRotationValues; |
