Fix Unregistered HLE function access
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user