2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-11 19:03:59 +00:00

RuntimeCommonB: Make use of bitfield initializers where applicable

Given that we now target C++20, we can make use of bitfield initializers
where applicable.
This commit is contained in:
Lioncash
2020-04-20 00:57:50 -04:00
parent 2103c38f54
commit 554893ef85
184 changed files with 587 additions and 1117 deletions

View File

@@ -87,19 +87,19 @@ private:
u32 x260_cumulativeParticles = 0;
u32 x264_recursiveParticleCount = 0;
int x268_PSLT;
bool x26c_24_translationDirty : 1;
bool x26c_25_LIT_ : 1;
bool x26c_26_AAPH : 1;
bool x26c_27_ZBUF : 1;
bool x26c_28_zTest : 1;
bool x26c_29_ORNT : 1;
bool x26c_30_MBLR : 1;
bool x26c_31_LINE : 1;
bool x26d_24_FXLL : 1;
bool x26d_25_warmedUp : 1;
bool x26d_26_modelsUseLights : 1;
bool x26c_24_translationDirty : 1 = false;
bool x26c_25_LIT_ : 1 = false;
bool x26c_26_AAPH : 1 = false;
bool x26c_27_ZBUF : 1 = false;
bool x26c_28_zTest : 1 = false;
bool x26c_29_ORNT : 1 = false;
bool x26c_30_MBLR : 1 = false;
bool x26c_31_LINE : 1 = false;
bool x26d_24_FXLL : 1 = false;
bool x26d_25_warmedUp : 1 = false;
bool x26d_26_modelsUseLights : 1 = false;
bool x26d_27_enableOPTS : 1;
bool x26d_28_enableADV : 1;
bool x26d_28_enableADV : 1 = false;
int x270_MBSP = 0;
int m_maxMBSP = 0;
ERglLightBits x274_backupLightActive = ERglLightBits::None;