diff --git a/Source/Core/Core/Src/PowerPC/PPCTables.cpp b/Source/Core/Core/Src/PowerPC/PPCTables.cpp index 97fa3f9f01..ad8b9e7685 100644 --- a/Source/Core/Core/Src/PowerPC/PPCTables.cpp +++ b/Source/Core/Core/Src/PowerPC/PPCTables.cpp @@ -86,7 +86,7 @@ GekkoOPInfo *GetOpInfo(UGeckoInstruction _inst) case 59: return m_infoTable59[_inst.SUBOP5]; case 63: return m_infoTable63[_inst.SUBOP10]; default: - _assert_msg_(GEKKO,0,"GetOpInfo - invalid subtable op %08x @ %08x", _inst, PC); + _assert_msg_(GEKKO,0,"GetOpInfo - invalid subtable op %08x @ %08x", _inst.hex, PC); return 0; } } @@ -94,7 +94,7 @@ GekkoOPInfo *GetOpInfo(UGeckoInstruction _inst) { if ((info->type & 0xFFFFFF) == OPTYPE_INVALID) { - _assert_msg_(GEKKO,0,"GetOpInfo - invalid op %08x @ %08x", _inst, PC); + _assert_msg_(GEKKO,0,"GetOpInfo - invalid op %08x @ %08x", _inst.hex, PC); return 0; } return m_infoTable[_inst.OPCD]; @@ -115,7 +115,7 @@ Interpreter::_interpreterInstruction GetInterpreterOp(UGeckoInstruction _inst) case 59: return Interpreter::m_opTable59[_inst.SUBOP5]; case 63: return Interpreter::m_opTable63[_inst.SUBOP10]; default: - _assert_msg_(GEKKO,0,"GetInterpreterOp - invalid subtable op %08x @ %08x", _inst, PC); + _assert_msg_(GEKKO,0,"GetInterpreterOp - invalid subtable op %08x @ %08x", _inst.hex, PC); return 0; } } @@ -123,7 +123,7 @@ Interpreter::_interpreterInstruction GetInterpreterOp(UGeckoInstruction _inst) { if ((info->type & 0xFFFFFF) == OPTYPE_INVALID) { - _assert_msg_(GEKKO,0,"GetInterpreterOp - invalid op %08x @ %08x", _inst, PC); + _assert_msg_(GEKKO,0,"GetInterpreterOp - invalid op %08x @ %08x", _inst.hex, PC); return 0; } return Interpreter::m_opTable[_inst.OPCD];