mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 00:27:42 +00:00
RuntimeCommon: Make use of bitfield initializers where applicable
Continues and finishes the migration towards initializing all bitfield members where applicable
This commit is contained in:
@@ -74,19 +74,19 @@ protected:
|
||||
CGuiSliderGroup* x18c_slidergroup_slider = nullptr;
|
||||
CGuiTableGroup* x190_tablegroup_double = nullptr;
|
||||
CGuiTableGroup* x194_tablegroup_triple = nullptr;
|
||||
bool x198_24_ready : 1;
|
||||
bool x198_25_handledInput : 1;
|
||||
bool x198_26_exitPauseScreen : 1;
|
||||
bool x198_27_canDraw : 1;
|
||||
bool x198_28_pulseTextArrowTop : 1;
|
||||
bool x198_29_pulseTextArrowBottom : 1;
|
||||
bool x198_24_ready : 1 = false;
|
||||
bool x198_25_handledInput : 1 = false;
|
||||
bool x198_26_exitPauseScreen : 1 = false;
|
||||
bool x198_27_canDraw : 1 = false;
|
||||
bool x198_28_pulseTextArrowTop : 1 = false;
|
||||
bool x198_29_pulseTextArrowBottom : 1 = false;
|
||||
bool m_isLogBook : 1;
|
||||
bool m_bodyUpClicked : 1;
|
||||
bool m_bodyDownClicked : 1;
|
||||
bool m_bodyClicked : 1;
|
||||
bool m_leftClicked : 1;
|
||||
bool m_rightClicked : 1;
|
||||
bool m_playRightTableSfx : 1;
|
||||
bool m_bodyUpClicked : 1 = false;
|
||||
bool m_bodyDownClicked : 1 = false;
|
||||
bool m_bodyClicked : 1 = false;
|
||||
bool m_leftClicked : 1 = false;
|
||||
bool m_rightClicked : 1 = false;
|
||||
bool m_playRightTableSfx : 1 = true;
|
||||
|
||||
void InitializeFrameGlue();
|
||||
void ChangeMode(EMode mode, bool playSfx = true);
|
||||
|
||||
Reference in New Issue
Block a user