summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2014-09-06 03:12:19 -0400
committerLioncash <mathew1800@gmail.com>2014-09-06 03:12:19 -0400
commite035ac559130e057426c8a857ffcece605765de1 (patch)
tree7676ce94dd6a2929d2a06ec6e4b38307d1504c36 /Source/Core
parentb7f19ca740096fa10b0c7f2a68b3fb0574421253 (diff)
parent50657548b1545aac14b1667fc4356338ba04bcdb (diff)
Merge pull request #992 from phire/betterassert
Make Invalid instruction debug assert a non-debug assert.
Diffstat (limited to 'Source/Core')
-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 10a0a45734..f85f3af8b0 100644
--- a/Source/Core/Core/PowerPC/Interpreter/Interpreter.cpp
+++ b/Source/Core/Core/PowerPC/Interpreter/Interpreter.cpp
@@ -305,7 +305,7 @@ void Interpreter::unknown_instruction(UGeckoInstruction _inst)
std::string disasm = GekkoDisassembler::Disassemble(Memory::ReadUnchecked_U32(last_pc), last_pc);
NOTICE_LOG(POWERPC, "Last PC = %08x : %s", last_pc, disasm.c_str());
Dolphin_Debugger::PrintCallstack();
- _dbg_assert_msg_(POWERPC, 0, "\nIntCPU: Unknown instruction %08x at PC = %08x last_PC = %08x LR = %08x\n", _inst.hex, PC, last_pc, LR);
+ _assert_msg_(POWERPC, 0, "\nIntCPU: Unknown instruction %08x at PC = %08x last_PC = %08x LR = %08x\n", _inst.hex, PC, last_pc, LR);
}
}