Remove unused var

This commit is contained in:
Headline 2025-09-19 00:41:48 -07:00
parent 61025d5ba0
commit 6377b00c2c
2 changed files with 0 additions and 2 deletions

View File

@ -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()

View File

@ -54,7 +54,6 @@ public:
int m_Flags;
bool m_InExec;
bool m_KillMe;
bool m_HighSpeed;
};
class TimerSystem :