MxTickleManager mostly done (#94)

* Checkpoint to show MxTickleManager::SetClientTickleInterval match.

* Match MxTickleManager::~MxTickleManager, obliterate MxTickleManager::SetClientTickleInterval.

* Make conditional more realistic, move MxTime to mxtypes.h, add TODO for MxTickleManager::Tickle.
This commit is contained in:
pewpew
2023-08-03 13:19:05 -05:00
committed by GitHub
parent 932baa2a87
commit 0f92e345b3
6 changed files with 184 additions and 11 deletions

View File

@@ -41,7 +41,7 @@ MxNotificationManager::~MxNotificationManager()
delete m_queue;
m_queue = NULL;
TickleManager()->Unregister(this);
TickleManager()->UnregisterClient(this);
}
// OFFSET: LEGO1 0x100ac800
@@ -80,7 +80,7 @@ MxResult MxNotificationManager::Create(MxS32 p_unk1, MxS32 p_unk2)
result = FAILURE;
}
else {
TickleManager()->Register(this, 10);
TickleManager()->RegisterClient(this, 10);
}
return result;