From f062543f87fc1d51c9f7f2f9d4f1ed38f3634a56 Mon Sep 17 00:00:00 2001 From: Christian Semmler Date: Sat, 14 Oct 2023 09:27:58 -0400 Subject: [PATCH] Match MxPresenter::StartAction to 100% --- LEGO1/mxpresenter.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LEGO1/mxpresenter.cpp b/LEGO1/mxpresenter.cpp index 5cd1dea9..9f0b55c4 100644 --- a/LEGO1/mxpresenter.cpp +++ b/LEGO1/mxpresenter.cpp @@ -125,8 +125,8 @@ MxLong MxPresenter::StartAction(MxStreamController *, MxDSAction *p_action) const MxVector3Data& location = this->m_action->GetLocation(); MxS32 previousTickleState = this->m_currentTickleState; - this->m_location = MxPoint32(location[0], location[1]); - this->m_displayZ = location[2]; + this->m_location = MxPoint32(this->m_action->GetLocation()[0], this->m_action->GetLocation()[1]); + this->m_displayZ = this->m_action->GetLocation()[2]; this->m_previousTickleStates |= 1 << (unsigned char)previousTickleState; this->m_currentTickleState = TickleState_Ready;