mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-26 17:36:12 -05:00
Replace FALSE with NULL
This commit is contained in:
parent
7db2b2e6b7
commit
5aa548c449
1 changed files with 2 additions and 2 deletions
|
@ -139,7 +139,7 @@ MxResult MxPresenter::StartAction(MxStreamController*, MxDSAction* p_action)
|
|||
// OFFSET: LEGO1 0x100b4e40
|
||||
void MxPresenter::EndAction()
|
||||
{
|
||||
if (this->m_action == FALSE)
|
||||
if (this->m_action == NULL)
|
||||
return;
|
||||
|
||||
MxAutoLocker lock(&this->m_criticalSection);
|
||||
|
@ -150,7 +150,7 @@ void MxPresenter::EndAction()
|
|||
);
|
||||
}
|
||||
|
||||
this->m_action = FALSE;
|
||||
this->m_action = NULL;
|
||||
MxS32 previousTickleState = 1 << m_currentTickleState;
|
||||
this->m_previousTickleStates |= previousTickleState;
|
||||
this->m_currentTickleState = TickleState_Idle;
|
||||
|
|
Loading…
Reference in a new issue