Add tickle states and implement/match MxPresenter::Tickle (#119)

* Implement/match MxPresenter::Tickle

* Remove space

* Explicit inline for aesthetics
This commit is contained in:
Christian Semmler
2023-09-04 18:33:38 -04:00
committed by GitHub
parent c7458211f3
commit 2b3f7cbfc1
4 changed files with 125 additions and 56 deletions

View File

@@ -94,8 +94,8 @@ void MxDSAction::Deserialize(char **p_source, MxS16 p_unk24)
{
MxDSObject::Deserialize(p_source, p_unk24);
this->m_flags = *(DWORD*) *p_source;
*p_source += sizeof(DWORD);
this->m_flags = *(MxU32*) *p_source;
*p_source += sizeof(MxU32);
this->m_startTime = *(DWORD*) *p_source;
*p_source += sizeof(DWORD);
this->m_duration = *(MxLong*) *p_source;