From bf45299e366c2e66ad0e36575ac9bae65bdc7b47 Mon Sep 17 00:00:00 2001 From: "XTra.KrazzY" Date: Wed, 1 Apr 2009 22:45:24 +0000 Subject: [PATCH] Tiny fix git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2823 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Plugins/Plugin_DSP_LLE-testing/Src/DSPInterpreter.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Source/Plugins/Plugin_DSP_LLE-testing/Src/DSPInterpreter.cpp b/Source/Plugins/Plugin_DSP_LLE-testing/Src/DSPInterpreter.cpp index 80128e6096..fe16c5966e 100644 --- a/Source/Plugins/Plugin_DSP_LLE-testing/Src/DSPInterpreter.cpp +++ b/Source/Plugins/Plugin_DSP_LLE-testing/Src/DSPInterpreter.cpp @@ -178,8 +178,7 @@ bool CheckCondition(u8 _Condition) void unknown(const UDSPInstruction& opc) { //_assert_msg_(MASTER_LOG, !g_dsp.exception_in_progress_hack, "assert while exception"); - PanicAlert("Unimplemented instruction %d", opc.hex); - ERROR_LOG(DSPHLE, "unknown opcode %d", opc.hex); + ERROR_LOG(DSPHLE, "LLE: Unrecognized opcode %d", opc.hex); //g_dsp.pc = g_dsp.err_pc; }