mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-04 22:19:02 +00:00
Another try
This commit is contained in:
parent
a8b5912340
commit
652c5901f8
12 changed files with 221 additions and 208 deletions
|
|
@ -36,6 +36,10 @@ CPUThread::~CPUThread()
|
|||
safe_delete(m_dec);
|
||||
}
|
||||
|
||||
bool CPUThread::IsRunning() const { return m_status == Running; }
|
||||
bool CPUThread::IsPaused() const { return m_status == Paused; }
|
||||
bool CPUThread::IsStopped() const { return m_status == Stopped; }
|
||||
|
||||
void CPUThread::Close()
|
||||
{
|
||||
ThreadBase::Stop(m_sync_wait);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue