mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 00:14:22 +00:00
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:
@@ -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) {
|
||||
|
@@ -36,6 +36,7 @@ MxCriticalSection::~MxCriticalSection()
|
||||
}
|
||||
|
||||
// FUNCTION: LEGO1 0x100b6d80
|
||||
// FUNCTION: BETA10 0x1013c725
|
||||
void MxCriticalSection::Enter()
|
||||
{
|
||||
DWORD result;
|
||||
|
@@ -542,6 +542,7 @@ MxResult MxVideoPresenter::AddToManager()
|
||||
}
|
||||
|
||||
// FUNCTION: LEGO1 0x100b31d0
|
||||
// FUNCTION: BETA10 0x101396d9
|
||||
void MxVideoPresenter::EndAction()
|
||||
{
|
||||
if (m_action) {
|
||||
|
Reference in New Issue
Block a user