mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-05 06:21:26 +12:00
Fix Unregistered HLE function access
This commit is contained in:
parent
ea1c9a2e17
commit
3bd29b8bac
1 changed files with 1 additions and 1 deletions
|
@ -2524,7 +2524,7 @@ std::vector<ppu_function_t>& ppu_function_manager::access()
|
||||||
{
|
{
|
||||||
LOG_ERROR(PPU, "Unregistered function called (LR=0x%x)", ppu.lr);
|
LOG_ERROR(PPU, "Unregistered function called (LR=0x%x)", ppu.lr);
|
||||||
ppu.gpr[3] = 0;
|
ppu.gpr[3] = 0;
|
||||||
ppu.cia += 4;
|
ppu.cia = (u32)ppu.lr & ~3;
|
||||||
return false;
|
return false;
|
||||||
},
|
},
|
||||||
[](ppu_thread& ppu) -> bool
|
[](ppu_thread& ppu) -> bool
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue