Match MxTransitionManager::Tickle

This commit is contained in:
Christian Semmler 2024-12-27 09:27:01 -07:00
parent fd5f7ad620
commit 3f4f311d75

View File

@ -54,7 +54,8 @@ MxResult MxTransitionManager::GetDDrawSurfaceFromVideoManager() // vtable+0x14
// FUNCTION: LEGO1 0x1004bac0
MxResult MxTransitionManager::Tickle()
{
if (m_animationSpeed + m_systemTime > timeGetTime()) {
MxULong time = m_animationSpeed + m_systemTime;
if (time > timeGetTime()) {
return SUCCESS;
}