mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-08 07:51:28 +12:00
PPU Analyser fix
This commit is contained in:
parent
7a1fd27ecc
commit
ed7883ba07
4 changed files with 23 additions and 22 deletions
|
@ -129,7 +129,7 @@ static bool ppu_fallback(ppu_thread& ppu, ppu_opcode_t op)
|
|||
{
|
||||
if (g_cfg_ppu_decoder.get() == ppu_decoder_type::llvm)
|
||||
{
|
||||
fmt::throw_exception("Unregistered PPU function [0x%08x]", ppu.cia);
|
||||
fmt::throw_exception("Unregistered PPU function");
|
||||
}
|
||||
|
||||
ppu_ref(ppu.cia) = ppu_cache(ppu.cia);
|
||||
|
@ -141,7 +141,7 @@ extern void ppu_register_range(u32 addr, u32 size)
|
|||
if (!size)
|
||||
{
|
||||
LOG_ERROR(PPU, "ppu_register_range(0x%x): empty range", addr);
|
||||
return;
|
||||
return;
|
||||
}
|
||||
|
||||
// Register executable range at
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue