summaryrefslogtreecommitdiff
path: root/include/JSystem/J2DGraph
diff options
context:
space:
mode:
authorLagoLunatic <LagoLunatic@users.noreply.github.com>2026-09-17 10:05:55 -0400
committerGitHub <noreply@github.com>2026-09-17 10:05:55 -0400
commitf38b962a5844502889ec00a98d0c9ed2a1151695 (patch)
tree26f19c014075891d18af15af95b2764feb63beaf /include/JSystem/J2DGraph
parent78f95573067988ad5812c040d8a6a77a78eb0dea (diff)
demo d_file_error OK, fmap/fmap2 work, misc (#1208)
* d_file_error OK, use J2DPane inlines everywhere * d_menu_fmap demo work * fmap and fmap2 work * fix demo regression with ternary fakematch * inline cleanup, f_pc_profile OK for demo * fix min/max bss order * lstair almost for demo
Diffstat (limited to 'include/JSystem/J2DGraph')
-rw-r--r--include/JSystem/J2DGraph/J2DPane.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/JSystem/J2DGraph/J2DPane.h b/include/JSystem/J2DGraph/J2DPane.h
index 646c7ce3..49dacd67 100644
--- a/include/JSystem/J2DGraph/J2DPane.h
+++ b/include/JSystem/J2DGraph/J2DPane.h
@@ -100,9 +100,9 @@ public:
mRotation = angle;
calcMtx();
}
- void setInfluencedAlpha(bool) {}
+ void setInfluencedAlpha(bool v) { mInfluencedAlpha = v; }
-public:
+protected:
/* 0x04 */ u32 mMagic;
/* 0x08 */ int mTag;
/* 0x0C */ JGeometry::TBox2<f32> mBounds;
@@ -118,7 +118,7 @@ public:
/* 0xAB */ u8 mCullMode;
/* 0xAC */ u8 mAlpha;
/* 0xAD */ u8 mDrawAlpha;
- /* 0xAE */ u8 mInheritAlpha;
+ /* 0xAE */ bool mInfluencedAlpha;
/* 0xAF */ u8 mIsConnectParent;
/* 0xB0 */ JSUTree<J2DPane> mPaneTree;
};