label ScoreState::VTable0x18 and associated member (#221)

This commit is contained in:
Ramen2X 2023-10-19 12:56:56 -04:00 committed by GitHub
parent adbe73d664
commit fbb3b4930c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -8,8 +8,8 @@ MxBool ScoreState::VTable0x14() {
} }
// OFFSET: LEGO1 0x1000de30 // OFFSET: LEGO1 0x1000de30
MxBool ScoreState::VTable0x18() MxBool ScoreState::SetScoreCubeTutorialFlag()
{ {
m_unk0x08 = TRUE; m_playCubeTutorial = TRUE;
return TRUE; return TRUE;
} }

View File

@ -22,10 +22,10 @@ class ScoreState : public LegoState
}; };
virtual MxBool VTable0x14() override; // vtable+0x14 virtual MxBool VTable0x14() override; // vtable+0x14
virtual MxBool VTable0x18() override; // vtable+0x18 virtual MxBool SetScoreCubeTutorialFlag() override; // vtable+0x18
private: private:
MxBool m_unk0x08; MxBool m_playCubeTutorial;
}; };
#endif // SCORESTATE_H #endif // SCORESTATE_H