MxTimer::Start - swap instruction order

Technically, isRunning is set after getting the real time according to the pseudo code,
which i guess is fine, you dont know it started until it really started
This commit is contained in:
Joshua Peisach 2023-06-20 18:10:36 -04:00
parent 290c006d14
commit d6ed66d89b

View File

@ -19,8 +19,8 @@ MxTimer::MxTimer()
// OFFSET: LEGO1 0x100ae160
void MxTimer::Start()
{
this->m_isRunning = MX_TRUE;
MxTimer::s_LastTimeTimerStarted = timeGetTime();
this->m_isRunning = MX_TRUE;
}
// OFFSET: LEGO1 0x100ae180