mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 11:36:13 +00:00
direct return in ppu_check
This commit is contained in:
parent
39a0ff99b2
commit
0f3dfec7f2
1 changed files with 3 additions and 3 deletions
|
@ -2457,10 +2457,10 @@ static void ppu_check(ppu_thread& ppu, u64 addr)
|
|||
{
|
||||
ppu.cia = ::narrow<u32>(addr);
|
||||
|
||||
// ppu_check() shall not return directly
|
||||
if (ppu.test_stopped())
|
||||
{}
|
||||
ppu_escape(&ppu);
|
||||
{
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
static void ppu_trace(u64 addr)
|
||||
|
|
Loading…
Add table
Reference in a new issue