Revert DoSomething from bool to BOOL

This commit is contained in:
zilmar 2015-05-04 17:23:36 +10:00
parent ba43e2ad67
commit 9aa9061f07
1 changed files with 2 additions and 2 deletions

View File

@ -62,7 +62,7 @@ public:
void ExecuteEvents(); void ExecuteEvents();
void QueueEvent(SystemEvent action); void QueueEvent(SystemEvent action);
const bool& DoSomething() const const BOOL & DoSomething() const
{ {
return m_bDoSomething; return m_bDoSomething;
} }
@ -77,6 +77,6 @@ private:
CN64System * m_System; CN64System * m_System;
CPlugins * m_Plugins; CPlugins * m_Plugins;
EventList m_Events; EventList m_Events;
bool m_bDoSomething; BOOL m_bDoSomething;
CriticalSection m_CS; CriticalSection m_CS;
}; };