Revert DoSomething from bool to BOOL
This commit is contained in:
parent
ba43e2ad67
commit
9aa9061f07
|
@ -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;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue