diff --git a/core/TimerSys.cpp b/core/TimerSys.cpp index 466af64b5..a9c7954ae 100644 --- a/core/TimerSys.cpp +++ b/core/TimerSys.cpp @@ -166,7 +166,6 @@ void ITimer::Initialize(ITimedEvent *pCallbacks, float fInterval, float fToExec, m_Flags = flags; m_InExec = false; m_KillMe = false; - m_HighSpeed = false; } TimerSystem::TimerSystem() diff --git a/core/TimerSys.h b/core/TimerSys.h index e4a9b7cdc..be482b212 100644 --- a/core/TimerSys.h +++ b/core/TimerSys.h @@ -54,7 +54,6 @@ public: int m_Flags; bool m_InExec; bool m_KillMe; - bool m_HighSpeed; }; class TimerSystem :