Match MxTransitionManager::Tickle (#1286)

This commit is contained in:
Christian Semmler 2024-12-27 09:33:20 -07:00 committed by GitHub
parent fd5f7ad620
commit f475d5e196
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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