Skip to content

Commit

Permalink
Match MxTransitionManager::Tickle (#1286)
Browse files Browse the repository at this point in the history
  • Loading branch information
foxtacles authored Dec 27, 2024
1 parent fd5f7ad commit f475d5e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion LEGO1/lego/legoomni/src/common/mxtransitionmanager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit f475d5e

Please sign in to comment.