Skip to content

Commit

Permalink
Fix Unregistered HLE function access
Browse files Browse the repository at this point in the history
  • Loading branch information
elad335 authored and kd-11 committed Apr 29, 2019
1 parent ea1c9a2 commit 3bd29b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rpcs3/Emu/Cell/PPUFunction.cpp
Expand Up @@ -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
Expand Down

0 comments on commit 3bd29b8

Please sign in to comment.