mirror of
https://github.com/alliedmodders/amxmodx.git
synced 2025-01-12 23:08:03 +03:00
Fix definitevely time drift on repeating tasks (bug 3302, r=dvander)
Former-commit-id: 28aa4dfbf7cb03a2d929423ef3c607f92a96aa75
This commit is contained in:
parent
e409a6cf23
commit
bf395c8ac1
@ -113,7 +113,9 @@ void CTaskMngr::CTask::changeBase(float fNewBase)
|
|||||||
|
|
||||||
void CTaskMngr::CTask::resetNextExecTime(float fCurrentTime)
|
void CTaskMngr::CTask::resetNextExecTime(float fCurrentTime)
|
||||||
{
|
{
|
||||||
m_fNextExecTime = fCurrentTime + m_fBase;
|
// If we're here while we're executing we would add m_fBase twice
|
||||||
|
if (!m_bInExecute)
|
||||||
|
m_fNextExecTime = fCurrentTime + m_fBase;
|
||||||
}
|
}
|
||||||
|
|
||||||
void CTaskMngr::CTask::executeIfRequired(float fCurrentTime, float fTimeLimit, float fTimeLeft)
|
void CTaskMngr::CTask::executeIfRequired(float fCurrentTime, float fTimeLimit, float fTimeLeft)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user