mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-20 12:59:12 +00:00
Runtime/GuiSys: Replace bitfield unions with constructor initializers
This commit is contained in:
@@ -12,16 +12,11 @@ class CHudHelmetInterface {
|
||||
zeus::CMatrix3f x0_hudLagRotation;
|
||||
zeus::CVector3f x24_pivotPosition;
|
||||
zeus::CVector3f x30_hudLagPosition;
|
||||
union {
|
||||
struct {
|
||||
bool x3c_24_helmetVisibleDebug : 1;
|
||||
bool x3c_25_helmetVisibleGame : 1;
|
||||
bool x3c_26_glowVisibleDebug : 1;
|
||||
bool x3c_27_glowVisibleGame : 1;
|
||||
bool x3c_28_hudLagDirty : 1;
|
||||
};
|
||||
u16 _dummy = 0;
|
||||
};
|
||||
bool x3c_24_helmetVisibleDebug : 1;
|
||||
bool x3c_25_helmetVisibleGame : 1;
|
||||
bool x3c_26_glowVisibleDebug : 1;
|
||||
bool x3c_27_glowVisibleGame : 1;
|
||||
bool x3c_28_hudLagDirty : 1;
|
||||
CGuiCamera* x40_camera;
|
||||
CGuiWidget* x44_BaseWidget_Pivot;
|
||||
CGuiWidget* x48_BaseWidget_Helmet;
|
||||
|
||||
Reference in New Issue
Block a user