[Project64] Disable copy constructor for CSystemTimer

This commit is contained in:
zilmar 2015-12-23 13:29:01 +11:00
parent 6395ea52f7
commit 2e4d73defa
1 changed files with 4 additions and 0 deletions

View File

@ -60,6 +60,10 @@ public:
bool operator != (const CSystemTimer& rSystemTimer) const;
private:
CSystemTimer(void); // Disable default constructor
CSystemTimer(const CSystemTimer&); // Disable copy constructor
CSystemTimer& operator=(const CSystemTimer&); // Disable assignment
TIMER_DETAILS m_TimerDetatils[MaxTimer];
int m_LastUpdate; //Timer at last update
int & m_NextTimer;