mirror of https://github.com/AxioDL/metaforce.git
CFrontEndUI: Default initialize SFrontEndFrame's x4_action to EAction::None
This is the initial value that GM8E v0 assigns to this member variable. Previously it was being left uninitialized on construction.
This commit is contained in:
parent
d93df18a37
commit
90e866d2d5
|
@ -225,7 +225,7 @@ public:
|
|||
enum class EAction { None, StartGame, FusionBonus, GameOptions, SlideShow };
|
||||
|
||||
u32 x0_rnd;
|
||||
EAction x4_action;
|
||||
EAction x4_action = EAction::None;
|
||||
TLockedToken<CGuiFrame> x8_frme;
|
||||
CGuiFrame* x14_loadedFrme = nullptr;
|
||||
CGuiTableGroup* x18_tablegroup_mainmenu = nullptr;
|
||||
|
|
Loading…
Reference in New Issue