TimingEvent: Fix events losing time when rescheduling outside handler

This commit is contained in:
Connor McLaughlin
2020-03-24 00:20:45 +10:00
parent 612b362ae9
commit 9ce63952fb
3 changed files with 11 additions and 29 deletions

View File

@@ -57,9 +57,6 @@ public:
Deactivate();
}
// Directly alters the downcount of the event.
void SetDowncount(TickCount downcount);
// Directly alters the interval of the event.
void SetInterval(TickCount interval) { m_interval = interval; }
void SetPeriod(TickCount period) { m_period = period; }