summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorMarkus Wick <markus@selfnet.de>2015-08-15 20:10:16 +0200
committerMarkus Wick <markus@selfnet.de>2015-08-15 20:10:16 +0200
commitb5a58837925c1bfb69eccbcc3ee12383fdd07f5b (patch)
tree096336c6ae2ae100906e8159535474e4896f5845 /Source
parent3469694b465272dd82b5d7aeb444c2d97bf7af6d (diff)
parentc49074742c078840fdde7b684675cf7528f8711d (diff)
Merge pull request #2851 from JosJuice/unknown-instruction
Restore old assert message for unknown instruction
Diffstat (limited to 'Source')
-rw-r--r--Source/Core/Core/PowerPC/Interpreter/Interpreter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Core/PowerPC/Interpreter/Interpreter.cpp b/Source/Core/Core/PowerPC/Interpreter/Interpreter.cpp
index 68b8f2c484..349a235d64 100644
--- a/Source/Core/Core/PowerPC/Interpreter/Interpreter.cpp
+++ b/Source/Core/Core/PowerPC/Interpreter/Interpreter.cpp
@@ -295,7 +295,7 @@ void Interpreter::unknown_instruction(UGeckoInstruction _inst)
i + 1, rGPR[i + 1],
i + 2, rGPR[i + 2],
i + 3, rGPR[i + 3]);
- assert(0);
+ _assert_msg_(POWERPC, 0, "\nIntCPU: Unknown instruction %08x at PC = %08x last_PC = %08x LR = %08x\n", _inst.hex, PC, last_pc, LR);
}
void Interpreter::ClearCache()