CPU: Only write exceptions to log when logging
This commit is contained in:
parent
f46160ac46
commit
7b0978119b
|
@ -295,9 +295,12 @@ void Core::RaiseException(Exception excode, u32 EPC, bool BD, bool BT, u8 CE)
|
||||||
Log_DebugPrintf("Exception %u at 0x%08X (epc=0x%08X, BD=%s, CE=%u)", static_cast<u32>(excode),
|
Log_DebugPrintf("Exception %u at 0x%08X (epc=0x%08X, BD=%s, CE=%u)", static_cast<u32>(excode),
|
||||||
m_current_instruction_pc, EPC, BD ? "true" : "false", ZeroExtend32(CE));
|
m_current_instruction_pc, EPC, BD ? "true" : "false", ZeroExtend32(CE));
|
||||||
DisassembleAndPrint(m_current_instruction_pc, 4, 0);
|
DisassembleAndPrint(m_current_instruction_pc, 4, 0);
|
||||||
|
if (LOG_EXECUTION)
|
||||||
|
{
|
||||||
CPU::WriteToExecutionLog("Exception %u at 0x%08X (epc=0x%08X, BD=%s, CE=%u)\n", static_cast<u32>(excode),
|
CPU::WriteToExecutionLog("Exception %u at 0x%08X (epc=0x%08X, BD=%s, CE=%u)\n", static_cast<u32>(excode),
|
||||||
m_current_instruction_pc, EPC, BD ? "true" : "false", ZeroExtend32(CE));
|
m_current_instruction_pc, EPC, BD ? "true" : "false", ZeroExtend32(CE));
|
||||||
}
|
}
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
m_cop0_regs.EPC = EPC;
|
m_cop0_regs.EPC = EPC;
|
||||||
|
|
Loading…
Reference in New Issue