Progress on LegoCarBuildAnimPresenter (#1103)

* Progress on `LegoCarBuildAnimPresenter`

* Rename argument

* fix copy-paste error

* Address review comments

* Remove obsolete comment

---------

Co-authored-by: jonschz <jonschz@users.noreply.github.com>
This commit is contained in:
jonschz
2024-09-12 21:51:33 +02:00
committed by GitHub
parent 5d19b6afe3
commit 7a6935a165
10 changed files with 152 additions and 27 deletions

View File

@@ -3,6 +3,7 @@
#include "mxcriticalsection.h"
// FUNCTION: LEGO1 0x100b8ed0
// FUNCTION: BETA10 0x101386f0
MxAutoLock::MxAutoLock(MxCriticalSection* p_criticalSection)
{
m_criticalSection = p_criticalSection;
@@ -13,6 +14,7 @@ MxAutoLock::MxAutoLock(MxCriticalSection* p_criticalSection)
}
// FUNCTION: LEGO1 0x100b8ef0
// FUNCTION: BETA10 0x10138744
MxAutoLock::~MxAutoLock()
{
if (m_criticalSection != NULL) {

View File

@@ -36,6 +36,7 @@ MxCriticalSection::~MxCriticalSection()
}
// FUNCTION: LEGO1 0x100b6d80
// FUNCTION: BETA10 0x1013c725
void MxCriticalSection::Enter()
{
DWORD result;

View File

@@ -542,6 +542,7 @@ MxResult MxVideoPresenter::AddToManager()
}
// FUNCTION: LEGO1 0x100b31d0
// FUNCTION: BETA10 0x101396d9
void MxVideoPresenter::EndAction()
{
if (m_action) {