Bugfix: assert in Timer::ProcessTimers.

This commit is contained in:
Gunnar Beutner 2013-02-08 10:39:54 +01:00
parent 09309b3899
commit 7526ee3a9e
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ double Timer::ProcessTimers(void)
double next = now + timer->GetInterval();
if (timer->m_Next < now || next < timer->m_Next)
if (timer->m_Next <= now || next < timer->m_Next)
timer->Reschedule(next);
}