From 7e907cfe3f8ce56362392655975319186116151d Mon Sep 17 00:00:00 2001 From: Ramen2X <64166386+Ramen2X@users.noreply.github.com> Date: Sun, 22 Oct 2023 11:33:29 -0400 Subject: [PATCH] implement/match JukeBoxState (#233) --- LEGO1/jukeboxstate.cpp | 5 +++++ LEGO1/jukeboxstate.h | 2 ++ 2 files changed, 7 insertions(+) diff --git a/LEGO1/jukeboxstate.cpp b/LEGO1/jukeboxstate.cpp index 25b6dc90..d4a2511f 100644 --- a/LEGO1/jukeboxstate.cpp +++ b/LEGO1/jukeboxstate.cpp @@ -1 +1,6 @@ #include "jukeboxstate.h" + +// OFFSET: LEGO1 0x1000f300 +MxBool JukeBoxState::VTable0x14() { + return FALSE; +} diff --git a/LEGO1/jukeboxstate.h b/LEGO1/jukeboxstate.h index 75640fe3..d2b37e38 100644 --- a/LEGO1/jukeboxstate.h +++ b/LEGO1/jukeboxstate.h @@ -21,6 +21,8 @@ public: return !strcmp(name, JukeBoxState::ClassName()) || LegoState::IsA(name); } + virtual MxBool VTable0x14() override; // vtable+0x14 + }; #endif // JUKEBOXSTATE_H