PPU: Do not break on unexpected TOC (#13490)

This commit is contained in:
Elad Ashkenazi 2023-03-09 15:53:44 +02:00 committed by GitHub
parent 450cb1771c
commit e45e9c20dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -492,11 +492,6 @@ static void ppu_check_toc(ppu_thread& ppu, ppu_opcode_t op, be_t<u32>* this_op,
if (ppu.gpr[2] != found->second)
{
ppu_log.error("Unexpected TOC (0x%x, expected 0x%x)", ppu.gpr[2], found->second);
if (!ppu.state.test_and_set(cpu_flag::dbg_pause) && ppu.check_state())
{
return;
}
}
// Fallback to the interpreter function