Revert DoSomething from bool to BOOL
This commit is contained in:
parent
ba43e2ad67
commit
9aa9061f07
|
@ -62,7 +62,7 @@ public:
|
|||
void ExecuteEvents();
|
||||
void QueueEvent(SystemEvent action);
|
||||
|
||||
const bool& DoSomething() const
|
||||
const BOOL & DoSomething() const
|
||||
{
|
||||
return m_bDoSomething;
|
||||
}
|
||||
|
@ -77,6 +77,6 @@ private:
|
|||
CN64System * m_System;
|
||||
CPlugins * m_Plugins;
|
||||
EventList m_Events;
|
||||
bool m_bDoSomething;
|
||||
BOOL m_bDoSomething;
|
||||
CriticalSection m_CS;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue