From 03428a2ac2ab50c138085c763c14c40d37833935 Mon Sep 17 00:00:00 2001 From: Misha <106913236+MishaProductions@users.noreply.github.com> Date: Fri, 15 Mar 2024 14:05:18 -0400 Subject: [PATCH] Fix crash in MxStillPresenter::Clone --- LEGO1/omni/src/video/mxstillpresenter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LEGO1/omni/src/video/mxstillpresenter.cpp b/LEGO1/omni/src/video/mxstillpresenter.cpp index 4093dabe..a144e7c1 100644 --- a/LEGO1/omni/src/video/mxstillpresenter.cpp +++ b/LEGO1/omni/src/video/mxstillpresenter.cpp @@ -231,7 +231,7 @@ MxStillPresenter* MxStillPresenter::Clone() if (presenter) { if (presenter->AddToManager() == SUCCESS) { - MxDSAction* action = presenter->GetAction()->Clone(); + MxDSAction* action = GetAction()->Clone(); if (action && presenter->StartAction(NULL, action) == SUCCESS) { presenter->SetBit0(GetBit0());