mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-01-03 17:38:15 +00:00
Fix Unregistered HLE function access
This commit is contained in:
parent
ea1c9a2e17
commit
3bd29b8bac
@ -2524,7 +2524,7 @@ std::vector<ppu_function_t>& ppu_function_manager::access()
|
||||
{
|
||||
LOG_ERROR(PPU, "Unregistered function called (LR=0x%x)", ppu.lr);
|
||||
ppu.gpr[3] = 0;
|
||||
ppu.cia += 4;
|
||||
ppu.cia = (u32)ppu.lr & ~3;
|
||||
return false;
|
||||
},
|
||||
[](ppu_thread& ppu) -> bool
|
||||
|
Loading…
Reference in New Issue
Block a user