2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 13:07:42 +00:00

Merge pull request #315 from lioncash/init

RuntimeCommonB: Make use of bitfield initializers where applicable
This commit is contained in:
2020-04-21 00:56:39 -04:00
committed by GitHub
184 changed files with 587 additions and 1117 deletions

View File

@@ -85,12 +85,12 @@ private:
std::vector<zeus::CVector3f> x420_calculatedVerts;
std::vector<float> x430_fractalMags;
std::vector<zeus::CVector3f> x440_fractalOffsets;
bool x450_24_emitting : 1;
bool x450_25_haveGPSM : 1;
bool x450_26_haveEPSM : 1;
bool x450_27_haveSSWH : 1;
bool x450_28_haveLWD : 1;
bool x450_29_transformDirty : 1;
bool x450_24_emitting : 1 = true;
bool x450_25_haveGPSM : 1 = false;
bool x450_26_haveEPSM : 1 = false;
bool x450_27_haveSSWH : 1 = false;
bool x450_28_haveLWD : 1 = false;
bool x450_29_transformDirty : 1 = true;
size_t m_nextLineRenderer = 0;
std::vector<std::unique_ptr<CLineRenderer>> m_lineRenderers;