From fbb3b4930cf7a4625c0b48212986c63d84d1336c Mon Sep 17 00:00:00 2001 From: Ramen2X <64166386+Ramen2X@users.noreply.github.com> Date: Thu, 19 Oct 2023 12:56:56 -0400 Subject: [PATCH] label ScoreState::VTable0x18 and associated member (#221) --- LEGO1/scorestate.cpp | 4 ++-- LEGO1/scorestate.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/LEGO1/scorestate.cpp b/LEGO1/scorestate.cpp index 1a649e2f..54f6e774 100644 --- a/LEGO1/scorestate.cpp +++ b/LEGO1/scorestate.cpp @@ -8,8 +8,8 @@ MxBool ScoreState::VTable0x14() { } // OFFSET: LEGO1 0x1000de30 -MxBool ScoreState::VTable0x18() +MxBool ScoreState::SetScoreCubeTutorialFlag() { - m_unk0x08 = TRUE; + m_playCubeTutorial = TRUE; return TRUE; } diff --git a/LEGO1/scorestate.h b/LEGO1/scorestate.h index 3fd0a9ce..9dfa445f 100644 --- a/LEGO1/scorestate.h +++ b/LEGO1/scorestate.h @@ -22,10 +22,10 @@ public: }; virtual MxBool VTable0x14() override; // vtable+0x14 - virtual MxBool VTable0x18() override; // vtable+0x18 + virtual MxBool SetScoreCubeTutorialFlag() override; // vtable+0x18 private: - MxBool m_unk0x08; + MxBool m_playCubeTutorial; }; #endif // SCORESTATE_H