mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 13:07: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:
@@ -58,8 +58,8 @@ private:
|
||||
float x58_ = 0.f;
|
||||
*/
|
||||
|
||||
SSlideData x5c_slideA;
|
||||
SSlideData x90_slideB;
|
||||
SSlideData x5c_slideA{*this};
|
||||
SSlideData x90_slideB{*this};
|
||||
|
||||
std::unique_ptr<CGuiTextSupport> xc4_textA;
|
||||
std::unique_ptr<CGuiTextSupport> xc8_textB;
|
||||
@@ -87,15 +87,15 @@ private:
|
||||
float x12c_ = 32.f;
|
||||
*/
|
||||
float x130_;
|
||||
bool x134_24_ : 1;
|
||||
bool x134_25_ : 1;
|
||||
bool x134_26_ : 1;
|
||||
bool x134_27_ : 1;
|
||||
bool x134_28_disableInput : 1;
|
||||
bool x134_29_ : 1;
|
||||
bool x134_30_ : 1;
|
||||
bool x134_31_ : 1;
|
||||
bool x135_24_ : 1;
|
||||
bool x134_24_ : 1 = true;
|
||||
bool x134_25_ : 1 = false;
|
||||
bool x134_26_ : 1 = false;
|
||||
bool x134_27_ : 1 = false;
|
||||
bool x134_28_disableInput : 1 = false;
|
||||
bool x134_29_ : 1 = false;
|
||||
bool x134_30_ : 1 = true;
|
||||
bool x134_31_ : 1 = false;
|
||||
bool x135_24_ : 1 = true;
|
||||
|
||||
bool LoadTXTRDep(std::string_view name);
|
||||
static bool AreAllDepsLoaded(const std::vector<TLockedToken<CDependencyGroup>>& deps);
|
||||
|
||||
Reference in New Issue
Block a user