Merge pull request #10737 from jackpoz/clock_fix

Core/Timer: Better handle system clock changes
This commit is contained in:
Nay
2013-09-11 11:50:50 -07:00
+1 -1
View File
@@ -66,7 +66,7 @@ struct IntervalTimer
void Reset()
{
if (_current >= _interval)
_current -= _interval;
_current %= _interval;
}
void SetCurrent(time_t current)