mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-04 14:08:37 +00:00
Small cellAudio update
This commit is contained in:
parent
e94ea409fe
commit
e066bcf261
6 changed files with 77 additions and 57 deletions
|
|
@ -96,7 +96,7 @@ bool CPUThread::Sync()
|
|||
|
||||
int CPUThread::ThreadStatus()
|
||||
{
|
||||
if(Emu.IsStopped() || IsStopped() )
|
||||
if (Emu.IsStopped() || IsStopped())
|
||||
{
|
||||
return CPUThread_Stopped;
|
||||
}
|
||||
|
|
@ -106,12 +106,12 @@ int CPUThread::ThreadStatus()
|
|||
return CPUThread_Step;
|
||||
}
|
||||
|
||||
if (TestDestroy())
|
||||
if (TestDestroy() || IsPaused())
|
||||
{
|
||||
return CPUThread_Break;
|
||||
}
|
||||
|
||||
if(Emu.IsPaused() || Sync())
|
||||
if (Emu.IsPaused() || Sync())
|
||||
{
|
||||
return CPUThread_Sleeping;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue