mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-22 02:32:36 +01:00
direct return in ppu_check
This commit is contained in:
parent
39a0ff99b2
commit
0f3dfec7f2
@ -2457,10 +2457,10 @@ static void ppu_check(ppu_thread& ppu, u64 addr)
|
|||||||
{
|
{
|
||||||
ppu.cia = ::narrow<u32>(addr);
|
ppu.cia = ::narrow<u32>(addr);
|
||||||
|
|
||||||
// ppu_check() shall not return directly
|
|
||||||
if (ppu.test_stopped())
|
if (ppu.test_stopped())
|
||||||
{}
|
{
|
||||||
ppu_escape(&ppu);
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void ppu_trace(u64 addr)
|
static void ppu_trace(u64 addr)
|
||||||
|
Loading…
Reference in New Issue
Block a user